Skip to content
This repository has been archived by the owner on Nov 4, 2020. It is now read-only.

Commit

Permalink
Update docs for assert.deepEqual
Browse files Browse the repository at this point in the history
  • Loading branch information
btd committed Dec 18, 2015
1 parent 49c4b55 commit 73118ae
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/ext/_assert.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@ assert.notEqual = function notEqual(actual, expected, message) {
// assert.deepEqual(actual, expected, message_opt);
/**
* Node.js standard [`assert.deepEqual`](http://nodejs.org/api/assert.html#assert_assert_deepequal_actual_expected_message).
* But uses should.js .eql implementation instead of Node.js own deepEqual.
*
* @static
* @memberOf should
* @category assertion assert
Expand All @@ -144,6 +146,8 @@ assert.deepEqual = function deepEqual(actual, expected, message) {
// assert.notDeepEqual(actual, expected, message_opt);
/**
* Node.js standard [`assert.notDeepEqual`](http://nodejs.org/api/assert.html#assert_assert_notdeepequal_actual_expected_message).
* But uses should.js .eql implementation instead of Node.js own deepEqual.
*
* @static
* @memberOf should
* @category assertion assert
Expand Down

0 comments on commit 73118ae

Please sign in to comment.