mirror of https://github.com/tc39/test262.git
Atomics: fix typo "throwes" => "throws"
This commit is contained in:
parent
5c5dd5b286
commit
9bf48e619d
|
@ -11,3 +11,7 @@ node_modules
|
|||
package-lock.json
|
||||
yarn.lock
|
||||
npm-shrinkwrap.json
|
||||
|
||||
# Created by test262-harness
|
||||
*.fail
|
||||
*.pass
|
||||
|
|
|
@ -42,4 +42,4 @@ try {
|
|||
|
||||
assert.throws(TypeError, function() {
|
||||
Atomics.wait(i64a, poisoned, poisoned, poisoned);
|
||||
}, 'Atomics.wait(i64a, poisoned, poisoned, poisoned) on detached buffer throwes TypeError');
|
||||
}, 'Atomics.wait(i64a, poisoned, poisoned, poisoned) on detached buffer throws TypeError');
|
||||
|
|
|
@ -33,4 +33,4 @@ try {
|
|||
|
||||
assert.throws(TypeError, function() {
|
||||
Atomics.wake(i64a, poisoned, poisoned);
|
||||
}, 'Atomics.wake(i64a, poisoned, poisoned) on detached buffer throwes TypeError');
|
||||
}, 'Atomics.wake(i64a, poisoned, poisoned) on detached buffer throws TypeError');
|
||||
|
|
|
@ -34,4 +34,4 @@ try {
|
|||
|
||||
assert.throws(TypeError, function() {
|
||||
Atomics.wake(i32a, poisoned, poisoned);
|
||||
}, 'Atomics.wake(i32a, poisoned, poisoned) on detached buffer throwes TypeError');
|
||||
}, 'Atomics.wake(i32a, poisoned, poisoned) on detached buffer throws TypeError');
|
||||
|
|
Loading…
Reference in New Issue