doc: Fixed missing quote in example for Hash#keys and missing arrows in example for Hash#each.

This commit is contained in:
tjcrowder 2009-09-10 15:45:05 +01:00
parent 3ee5b5ddd8
commit fe5290e15e
1 changed files with 1 additions and 1 deletions

View File

@ -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');