Skip to content

Commit

Permalink
Editorial: Change "be this value" to "be the this value" (#476)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpcsh authored Jul 13, 2020
1 parent 7f83b8a commit fff9743
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions spec/collator.html
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ <h1>get Intl.Collator.prototype.compare</h1>
</p>

<emu-alg>
1. Let _collator_ be *this* value.
1. Let _collator_ be the *this* value.
1. Perform ? RequireInternalSlot(_collator_, [[InitializedCollator]]).
1. If _collator_.[[BoundCompare]] is *undefined*, then
1. Let _F_ be a new built-in function object as defined in <emu-xref href="#sec-collator-compare-functions"></emu-xref>.
Expand Down Expand Up @@ -269,7 +269,7 @@ <h1>Intl.Collator.prototype.resolvedOptions ()</h1>
</p>

<emu-alg>
1. Let _collator_ be *this* value.
1. Let _collator_ be the *this* value.
1. Perform ? RequireInternalSlot(_collator_, [[InitializedCollator]]).
1. Let _options_ be ! ObjectCreate(%ObjectPrototype%).
1. For each row of <emu-xref href="#table-collator-resolvedoptions-properties"></emu-xref>, except the header row, in table order, do
Expand Down
6 changes: 3 additions & 3 deletions spec/datetimeformat.html
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ <h1>get Intl.DateTimeFormat.prototype.format</h1>
</p>

<emu-alg>
1. Let _dtf_ be *this* value.
1. Let _dtf_ be the *this* value.
1. If Type(_dtf_) is not Object, throw a *TypeError* exception.
1. Let _dtf_ be ? UnwrapDateTimeFormat(_dtf_).
1. If _dtf_.[[BoundFormat]] is *undefined*, then
Expand All @@ -656,7 +656,7 @@ <h1>Intl.DateTimeFormat.prototype.formatToParts ( _date_ )</h1>
</p>

<emu-alg>
1. Let _dtf_ be *this* value.
1. Let _dtf_ be the *this* value.
1. Perform ? RequireInternalSlot(_dtf_, [[InitializedDateTimeFormat]]).
1. If _date_ is *undefined*, then
1. Let _x_ be Call(%Date_now%, *undefined*).
Expand All @@ -674,7 +674,7 @@ <h1>Intl.DateTimeFormat.prototype.resolvedOptions ()</h1>
</p>

<emu-alg>
1. Let _dtf_ be *this* value.
1. Let _dtf_ be the *this* value.
1. If Type(_dtf_) is not Object, throw a *TypeError* exception.
1. Let _dtf_ be ? UnwrapDateTimeFormat(_dtf_).
1. Let _options_ be ! ObjectCreate(%ObjectPrototype%).
Expand Down
2 changes: 1 addition & 1 deletion spec/numberformat.html
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,7 @@ <h1>Intl.NumberFormat.prototype.resolvedOptions ()</h1>
</p>

<emu-alg>
1. Let _nf_ be *this* value.
1. Let _nf_ be the *this* value.
1. If Type(_nf_) is not Object, throw a *TypeError* exception.
1. Let _nf_ be ? UnwrapNumberFormat(_nf_).
1. Let _options_ be ! ObjectCreate(%ObjectPrototype%).
Expand Down

0 comments on commit fff9743

Please sign in to comment.