Fix typo in _.clone documentation. [closes #130]

Former-commit-id: 81e17c992848c5d0ac9d30fb64eef3163bac6598
This commit is contained in:
John-David Dalton
2012-12-03 22:10:08 -08:00
parent 6188c38053
commit 081e72b3ea
2 changed files with 100 additions and 100 deletions

View File

@@ -978,7 +978,7 @@
* // => true
*
* var deep = _.clone(stooges, true);
* shallow[0] === stooges[0];
* deep[0] === stooges[0];
* // => false
*/
function clone(value, deep, guard, stackA, stackB) {