Skip to content

Commit dfd5ea2

Browse files
shvaikaleshljharb
authored andcommitted
Editorial: Fix casing of @@hasInstance well-known symbol (#1978)
1 parent b815bc1 commit dfd5ea2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -15009,7 +15009,7 @@ <h1>Runtime Semantics: Evaluation</h1>
1500915009

1501015010
<emu-clause id="sec-instanceofoperator" aoid="InstanceofOperator">
1501115011
<h1>Runtime Semantics: InstanceofOperator ( _V_, _target_ )</h1>
15012-
<p>The abstract operation InstanceofOperator(_V_, _target_) implements the generic algorithm for determining if ECMAScript value _V_ is an instance of object _target_ either by consulting _target_'s @@hasinstance method or, if absent, determining whether the value of _target_'s *"prototype"* property is present in _V_'s prototype chain. This abstract operation performs the following steps:</p>
15012+
<p>The abstract operation InstanceofOperator(_V_, _target_) implements the generic algorithm for determining if ECMAScript value _V_ is an instance of object _target_ either by consulting _target_'s @@hasInstance method or, if absent, determining whether the value of _target_'s *"prototype"* property is present in _V_'s prototype chain. This abstract operation performs the following steps:</p>
1501315013
<emu-alg>
1501415014
1. If Type(_target_) is not Object, throw a *TypeError* exception.
1501515015
1. Let _instOfHandler_ be ? GetMethod(_target_, @@hasInstance).

0 commit comments

Comments
 (0)