diff --git a/spec/annexes.html b/spec/annexes.html
index e23ab569..21930dce 100644
--- a/spec/annexes.html
+++ b/spec/annexes.html
@@ -110,6 +110,9 @@
Implementation Dependent Behaviour
The patterns used for formatting values as decimal, percent, currency, or unit values per locale, with or without the sign, with or without accounting format for currencies, and in standard, compact, or scientific notation ()
+
+ The number of fractional digits used when formatting currency values ()
+
Localized representations of *NaN* and *Infinity* ()
diff --git a/spec/numberformat.html b/spec/numberformat.html
index cc5fc544..c1c5aa30 100644
--- a/spec/numberformat.html
+++ b/spec/numberformat.html
@@ -684,18 +684,20 @@ Properties of Intl.NumberFormat Instances
Abstract Operations for NumberFormat Objects
-
+
CurrencyDigits (
_currency_: a String,
): a non-negative integer
+
1. Assert: IsWellFormedCurrencyCode(_currency_) is *true*.
- 1. Assert: _currency_ is the ASCII-uppercase of _currency_.
- 1. If the ISO 4217 currency and funds code list contains _currency_ as an alphabetic code, return the minor unit value corresponding to the _currency_ from the list; otherwise, return 2.
+ 1. Return a non-negative integer indicating the number of fractional digits used when formatting quantities of the currency corresponding to _currency_. If there is no available information on the number of digits to be used, return 2.