From 46b1c06039ff77f4610e90239a9de79578a66004 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Tue, 3 Dec 2013 01:38:21 -0600 Subject: [PATCH] fixed examples --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 35a0ac2..5240313 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Browser Example // The shuffle modifies the original array // calling a.slice(0) creates a copy, which is assigned to b b = window.knuthShuffle(a.slice(0)); - console.log(); + console.log(b); }); ``` @@ -56,7 +56,7 @@ npm install -S knuth-shuffle // The shuffle modifies the original array // calling a.slice(0) creates a copy, which is assigned to b b = shuffle(a.slice(0)); - console.log(); + console.log(b); }); ```