minor doc update

This commit is contained in:
rolux 2012-04-07 12:44:53 +02:00
parent da8066dc73
commit ee5f89ca86

View file

@ -564,8 +564,8 @@ Ox.shuffle <f> 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;