Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArkerone <shaita.axel@gmail.com>2021-04-08 15:03:34 +0300
committerJames M Snell <jasnell@gmail.com>2021-04-08 17:22:24 +0300
commit093b527b259e954962493ba001a8d4fca1215d28 (patch)
tree3f090e3feaed69adb23bac6faf2ad15d324d5bea /doc/api/assert.md
parent656fb4657a3f9c91c095ac8ea766945acce4d760 (diff)
doc: fix typo in assert.md
change "asssert" to "assert" PR-URL: https://github.com/nodejs/node/pull/38152 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'doc/api/assert.md')
-rw-r--r--doc/api/assert.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/assert.md b/doc/api/assert.md
index 45693dd52b0..5c73e1085ea 100644
--- a/doc/api/assert.md
+++ b/doc/api/assert.md
@@ -1951,7 +1951,7 @@ assert.rejects(
```
```cjs
-const asssert = require('assert/strict');
+const assert = require('assert/strict');
assert.rejects(
Promise.reject(new Error('Wrong value')),