From ee5f89ca867252e29dd2674a664c68d20eea5fa5 Mon Sep 17 00:00:00 2001 From: rolux Date: Sat, 7 Apr 2012 12:44:53 +0200 Subject: [PATCH] minor doc update --- source/Ox/js/Collection.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Ox/js/Collection.js b/source/Ox/js/Collection.js index 31d5eb12..9718a5a1 100644 --- a/source/Ox/js/Collection.js +++ b/source/Ox/js/Collection.js @@ -564,8 +564,8 @@ Ox.shuffle Randomizes the order of values within a collection 3 > Ox.len(Ox.shuffle({a: 1, b: 2, c: 3})) 3 - > Ox.shuffle('123').length - 3 + > Ox.shuffle('123').split('').sort().join('') + '123' @*/ Ox.shuffle = function(col) { var keys, ret, type = Ox.typeOf(col), values;