summaryrefslogtreecommitdiff
path: root/doc/api/assert.md
diff options
context:
space:
mode:
authorAndres Kalle <mjomble@gmail.com>2017-11-07 20:03:27 +0200
committerVse Mozhet Byt <vsemozhetbyt@gmail.com>2017-11-08 02:30:42 +0200
commit7d9976237ae0567e5f19941a6fd590c3bc88d009 (patch)
tree62cb96efc3457ce28ae4df14253595f55a945ec6 /doc/api/assert.md
parentf5a7a9e77d86e692f4bfce52fce2415e9235212d (diff)
downloadandroid-node-v8-7d9976237ae0567e5f19941a6fd590c3bc88d009.tar.gz
android-node-v8-7d9976237ae0567e5f19941a6fd590c3bc88d009.tar.bz2
android-node-v8-7d9976237ae0567e5f19941a6fd590c3bc88d009.zip
doc: fix typo in assert.md
PR-URL: https://github.com/nodejs/node/pull/16866 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Bryan English <bryan@bryanenglish.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 7bced00c26..30ff4f78a8 100644
--- a/doc/api/assert.md
+++ b/doc/api/assert.md
@@ -337,7 +337,7 @@ assert.fail(1, 2, new TypeError('need array'));
// TypeError: need array
```
-*Note*: Is the last two cases `actual`, `expected`, and `operator` have no
+*Note*: In the last two cases `actual`, `expected`, and `operator` have no
influence on the error message.
```js