summaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
authorktsj <ktsj@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-04 13:59:23 +0000
committerktsj <ktsj@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-04 13:59:23 +0000
commitb212b84fc1ebe42e559a078ef9e78e9b7e51907b (patch)
tree02a0b990cdcebb2aef96d5a5bc8dcee162b62aac /hash.c
parent44281c8102e34258a709d7e1a6a9c5459483f7f8 (diff)
* hash.c: remove trailing spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34895 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hash.c b/hash.c
index 6490ab084f..dbd7082540 100644
--- a/hash.c
+++ b/hash.c
@@ -3217,7 +3217,7 @@ env_update(VALUE env, VALUE hash)
* and <code>eql?</code> methods are overridden to provide meaningful
* behavior. By default, separate instances refer to separate hash keys.
*
- * A typical implementation of <code>hash</code> is based on the
+ * A typical implementation of <code>hash</code> is based on the
* object's data while <code>eql?</code> is usually aliased to the overridden
* <code>==</code> method:
*
@@ -3231,7 +3231,7 @@ env_update(VALUE env, VALUE hash)
*
* def ==(other)
* self.class === other and
- * other.author == @author and
+ * other.author == @author and
* other.title == @title
* end
*