docs/ARRAY.md in lite-ruby-1.0.1 vs docs/ARRAY.md in lite-ruby-1.0.2

- old
+ new

@@ -174,10 +174,10 @@ `probability` ------ Generates a hash mapping each unique element in the array to the relative frequency, i.e. the probability, of it appearance. ```ruby -[:a,:b,:c,:c].probability #=> { a: 0.25,b: 0.25,c: 0.5 } +[:a,:b,:c,:c].probability #=> { a: 0.25, b: 0.25, c: 0.5 } ``` `promote(!)` ------ Moves a given value to head of array.