Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
rkirsling committed Sep 9, 2020
1 parent 9237a82 commit bd01d37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -35147,9 +35147,9 @@ <h1>%TypedArray%.prototype.slice ( _start_, _end_ )</h1>
1. Let _targetBuffer_ be _A_.[[ViewedArrayBuffer]].
1. Let _elementSize_ be the Element Size value specified in <emu-xref href="#table-the-typedarray-constructors"></emu-xref> for Element Type _srcType_.
1. NOTE: If _srcType_ and _targetType_ are the same, the transfer must be performed in a manner that preserves the bit-level encoding of the source data.
1. Let _srcByteOffet_ be _O_.[[ByteOffset]].
1. Let _srcByteOffset_ be _O_.[[ByteOffset]].
1. Let _targetByteIndex_ be _A_.[[ByteOffset]].
1. Let _srcByteIndex_ be (_k_ &times; _elementSize_) + _srcByteOffet_.
1. Let _srcByteIndex_ be (_k_ &times; _elementSize_) + _srcByteOffset_.
1. Let _limit_ be _targetByteIndex_ + _count_ &times; _elementSize_.
1. Repeat, while _targetByteIndex_ &lt; _limit_,
1. Let _value_ be GetValueFromBuffer(_srcBuffer_, _srcByteIndex_, ~Uint8~, *true*, ~Unordered~).
Expand Down

0 comments on commit bd01d37

Please sign in to comment.