From fe5290e15ea2b8cd9c7d710d00baf93aadbc36ba Mon Sep 17 00:00:00 2001 From: tjcrowder Date: Thu, 10 Sep 2009 15:45:05 +0100 Subject: [PATCH] doc: Fixed missing quote in example for Hash#keys and missing arrows in example for Hash#each. --- src/lang/hash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lang/hash.js b/src/lang/hash.js index ec9ab14..801ad90 100644 --- a/src/lang/hash.js +++ b/src/lang/hash.js @@ -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');