From cd96fc79932422862c86c04606dd657718d39360 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Mon, 12 Oct 2015 14:00:12 -0700 Subject: [PATCH] fixup --- doc/api/assert.markdown | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/api/assert.markdown b/doc/api/assert.markdown index 991ef1ed25cbba..cd0b397debdd76 100644 --- a/doc/api/assert.markdown +++ b/doc/api/assert.markdown @@ -32,8 +32,9 @@ comparison operator ( `==` ). This only considers enumerable properties. It does not test object prototypes, attached symbols, or non-enumerable properties. This can lead to some -potentially surprising results. For this does not throw an `AssertionError` -because the properties on the `Error` object are non-enumerable: +potentially surprising results. For example, this does not throw an +`AssertionError` because the properties on the `Error` object are +non-enumerable: // WARNING: This probably does not do what you expect! assert.deepEqual(Error('a'), Error('b'));