Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
syg committed Jul 7, 2023
1 parent f6d4b4f commit 73f8b94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -40692,7 +40692,7 @@ <h1>%TypedArray%.prototype.slice ( _start_, _end_ )</h1>
1. Let _srcByteOffset_ be _O_.[[ByteOffset]].
1. Let _srcByteIndex_ be (_k_ × _elementSize_) + _srcByteOffset_.
1. Let _targetByteIndex_ be _A_.[[ByteOffset]].
1. Let _limit_ be min(_targetByteIndex_ + _count_ × _elementSize_, len × _elementSize_).
1. Let _limit_ be _targetByteIndex_ + min(_count_, _len_) × _elementSize_.
1. Repeat, while _targetByteIndex_ &lt; _limit_,
1. Let _value_ be GetValueFromBuffer(_srcBuffer_, _srcByteIndex_, ~Uint8~, *true*, ~Unordered~).
1. Perform SetValueInBuffer(_targetBuffer_, _targetByteIndex_, ~Uint8~, _value_, *true*, ~Unordered~).
Expand Down

0 comments on commit 73f8b94

Please sign in to comment.