aboutsummaryrefslogtreecommitdiff
path: root/files/fr
diff options
context:
space:
mode:
authorGaëtan LAGIER <gaetan.lagier@hotmail.Fr>2021-03-17 16:58:09 +0100
committerGitHub <noreply@github.com>2021-03-17 16:58:09 +0100
commit345a60f5f0aa29f65bd0e13aee7f55870f4a92c2 (patch)
tree2b4b96f6c8f1ed5c316b85a90b1f7bd4af6c45ef /files/fr
parent8b00c6bade0458219d8436fe66c6ca1a284e379e (diff)
downloadtranslated-content-345a60f5f0aa29f65bd0e13aee7f55870f4a92c2.tar.gz
translated-content-345a60f5f0aa29f65bd0e13aee7f55870f4a92c2.tar.bz2
translated-content-345a60f5f0aa29f65bd0e13aee7f55870f4a92c2.zip
Change Atomics.wake by Atomics.notify in French (#202)
In atomics/wait/index.html.
Diffstat (limited to 'files/fr')
-rw-r--r--files/fr/web/javascript/reference/global_objects/atomics/wait/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/fr/web/javascript/reference/global_objects/atomics/wait/index.html b/files/fr/web/javascript/reference/global_objects/atomics/wait/index.html
index bf151a173f..828c0d45d6 100644
--- a/files/fr/web/javascript/reference/global_objects/atomics/wait/index.html
+++ b/files/fr/web/javascript/reference/global_objects/atomics/wait/index.html
@@ -64,7 +64,7 @@ console.log(int32[0]); // 123</pre>
<pre class="brush: js">console.log(int32[0]); // 0;
Atomics.store(int32, 0, 123);
-Atomics.wake(int32, 0, 1);</pre>
+Atomics.notify(int32, 0, 1);</pre>
<h2 id="Spécifications">Spécifications</h2>