Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Editorial: Change "be this value" to "be the this value" #476

Merged
merged 1 commit into from
Jul 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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