doc: Minor grammar update to Hash#clone.

This commit is contained in:
tjcrowder 2009-09-10 14:13:28 +01:00
parent 1bab56cfb7
commit f457097afa
1 changed files with 2 additions and 2 deletions

View File

@ -172,7 +172,7 @@ var Hash = Class.create(Enumerable, (function() {
/** related to: Object.inspect
* Hash#inspect() -> String
*
* Returns the debug-oriented string representation of the hash.
* Returns the debug-oriented string representation of the Hash.
**/
function inspect() {
return '#<Hash:{' + this.map(function(pair) {
@ -192,7 +192,7 @@ var Hash = Class.create(Enumerable, (function() {
/**
* Hash#clone() -> Hash
*
* Returns a clone of hash.
* Returns a clone of this Hash.
**/
function clone() {
return new Hash(this);