mirror of
https://github.com/tc39/test262.git
synced 2025-04-08 19:35:28 +02:00
Atomics: fix typo "throwes" => "throws"
This commit is contained in:
parent
5c5dd5b286
commit
9bf48e619d
4
.gitignore
vendored
4
.gitignore
vendored
@ -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…
x
Reference in New Issue
Block a user