From 0f98f91479c360d9f62a6c29f0407ae2533d1506 Mon Sep 17 00:00:00 2001 From: Valentin Date: Wed, 3 Jul 2013 04:13:10 -0700 Subject: [PATCH] fix copy-paste in examples --- docs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index d6c022b..187cd7a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -433,7 +433,7 @@

Array Functions

_.unshift(array, item)

Inserts item at the beginning of an array

-
_.push({1,2,3}, 4)
=> {4,1,2,3}
+
_.unshift({1,2,3}, 4)
=> {4,1,2,3}