diff --git a/spec/numberformat.html b/spec/numberformat.html
index f28a5f84..4305ac89 100644
--- a/spec/numberformat.html
+++ b/spec/numberformat.html
@@ -1862,7 +1862,7 @@
1. Append the Record { [[Type]]: *"literal"*, [[Value]]: _rangeSeparator_, [[Source]]: *"shared"* } to _result_.
1. For each element _r_ of _yResult_, do
1. Append the Record { [[Type]]: _r_.[[Type]], [[Value]]: _r_.[[Value]], [[Source]]: *"endRange"* } to _result_.
- 1. Return CollapseNumberRange(_result_).
+ 1. Return CollapseNumberRange(_numberFormat_, _result_).
@@ -1887,12 +1887,13 @@
CollapseNumberRange (
+ _numberFormat_: an Intl.NumberFormat,
_result_: a List of Records with fields [[Type]] (a String), [[Value]] (a String), and [[Source]] (a String),
): a List of Records with fields [[Type]] (a String), [[Value]] (a String), and [[Source]] (a String)
For example, an implementation may remove the Record representing a currency symbol after a range separator to convert a _results_ List representing *"$3–$5"* into one representing *"$3–5"*.