Skip to content

Commit 35452a1

Browse files
authored
[editorial] Replace 'let' with 'set' as appropriate (#40)
1 parent 97bc452 commit 35452a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -164,10 +164,10 @@ <h1><ins>Array.fromAsync ( _asyncItems_ [ , _mapfn_ [ , _thisArg_ ] ] )</ins></h
164164
1. Repeat, while _k_ &lt; _len_,
165165
1. Let _Pk_ be ! ToString(𝔽(_k_)).
166166
1. Let _kValue_ be ? Get(_arrayLike_, _Pk_).
167-
1. Let _kValue_ be ? Await(_kValue_).
167+
1. Set _kValue_ to ? Await(_kValue_).
168168
1. If _mapping_ is *true*, then
169169
1. Let _mappedValue_ be ? Call(_mapfn_, _thisArg_, &laquo; _kValue_, 𝔽(_k_) &raquo;).
170-
1. Let _mappedValue_ be ? Await(_mappedValue_).
170+
1. Set _mappedValue_ to ? Await(_mappedValue_).
171171
1. Else, let _mappedValue_ be _kValue_.
172172
1. Perform ? CreateDataPropertyOrThrow(_A_, _Pk_, _mappedValue_).
173173
1. Set _k_ to _k_ + 1.

0 commit comments

Comments
 (0)