Skip to content

Commit 6593c0e

Browse files
gibson042leobalter
authored andcommitted
1 parent 8f6b681 commit 6593c0e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

spec/locale-sensitive-functions.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@ <h1>
8989
1. If _locale_ is *undefined*, set _locale_ to *"und"*.
9090
1. Let _codePoints_ be ! StringToCodePoints(_S_).
9191
1. If _targetCase_ is ~lower~, then
92-
1. Let _newCodePoints_ be a List whose elements are the result of a lower case transformation of _codePoints_ according to an implementation-derived algorithm using _locale_ or the Unicode Default Case Conversion algorithm.
92+
1. Let _newCodePoints_ be a List whose elements are the result of a lowercase transformation of _codePoints_ according to an implementation-derived algorithm using _locale_ or the Unicode Default Case Conversion algorithm.
9393
1. Else,
9494
1. Assert: _targetCase_ is ~upper~.
95-
1. Let _newCodePoints_ be a List whose elements are the result of an upper case transformation of _codePoints_ according to an implementation-derived algorithm using _locale_ or the Unicode Default Case Conversion algorithm.
95+
1. Let _newCodePoints_ be a List whose elements are the result of an uppercase transformation of _codePoints_ according to an implementation-derived algorithm using _locale_ or the Unicode Default Case Conversion algorithm.
9696
1. Return ! CodePointsToString(_newCodePoints_).
9797
</emu-alg>
9898

spec/locales-currencies-tz.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ <h1>DefaultLocale ( )</h1>
136136
<h1>Currency Codes</h1>
137137

138138
<p>
139-
The ECMAScript 2022 Internationalization API Specification identifies currencies using 3-letter currency codes as defined by ISO 4217. Their canonical form is upper case.
139+
The ECMAScript 2022 Internationalization API Specification identifies currencies using 3-letter currency codes as defined by ISO 4217. Their canonical form is uppercase.
140140
</p>
141141

142142
<p>

spec/numberformat.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ <h1>Abstract Operations for NumberFormat Objects</h1>
482482
<h1>CurrencyDigits ( _currency_ )</h1>
483483

484484
<p>
485-
When the CurrencyDigits abstract operation is called with an argument _currency_ (which must be an upper case String value), the following steps are taken:
485+
When the CurrencyDigits abstract operation is called with an argument _currency_ (which must be an uppercase String value), the following steps are taken:
486486
</p>
487487

488488
<emu-alg>

0 commit comments

Comments
 (0)