diff options
author | umatoma <umatomakun@gmail.com> | 2017-10-20 18:26:10 +0900 |
---|---|---|
committer | Myles Borins <mylesborins@google.com> | 2017-11-28 13:10:41 +0900 |
commit | 0b5a0ada2a1941510aea2739630f181f52d81116 (patch) | |
tree | e279a40c88c3f8d4891ae834734eaab44a99d84d /doc | |
parent | 34dfce7710070fcb02d2de4aece7ed35352b4ac9 (diff) | |
download | node-new-0b5a0ada2a1941510aea2739630f181f52d81116.tar.gz |
doc: fix comment in assert.md
PR-URL: https://github.com/nodejs/node/pull/16335
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/assert.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/assert.md b/doc/api/assert.md index bf69de826c..58d4427270 100644 --- a/doc/api/assert.md +++ b/doc/api/assert.md @@ -304,7 +304,7 @@ assert.notDeepEqual(obj1, obj3); // AssertionError: { a: { b: 1 } } notDeepEqual { a: { b: 1 } } assert.notDeepEqual(obj1, obj4); -// OK, obj1 and obj2 are not deeply equal +// OK, obj1 and obj4 are not deeply equal ``` If the values are deeply equal, an `AssertionError` is thrown with a `message` |