doc: Fixed missing quote in example for Hash#keys and missing arrows in example for Hash#each.
This commit is contained in:
parent
3ee5b5ddd8
commit
fe5290e15e
|
@ -179,7 +179,7 @@ var Hash = Class.create(Enumerable, (function() {
|
|||
*
|
||||
* var h = $H({one: "uno", two: "due", three: "tre"});
|
||||
* h.keys();
|
||||
* // -> ["one", "three", "two] (these may be in any order)
|
||||
* // -> ["one", "three", "two"] (these may be in any order)
|
||||
**/
|
||||
function keys() {
|
||||
return this.pluck('key');
|
||||
|
|
Loading…
Reference in New Issue