From 3a50fb15d00aed9debc95bfb2db40553b4570174 Mon Sep 17 00:00:00 2001 From: eregon Date: Thu, 17 Jan 2013 11:28:52 +0000 Subject: [PATCH] * object.c: Typo in Kernel#hash documentation. Patch by zed_0xff [Github Fixes #237] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38862 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ object.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 2167026ee3..9f59f67835 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Jan 17 20:28:18 2013 Benoit Daloze + + * object.c: Typo in Kernel#hash documentation. + Patch by zed_0xff [Github Fixes #237] + Thu Jan 17 10:48:56 2013 Aaron Patterson * ext/psych/lib/psych/scalar_scanner.rb: use constants rather than diff --git a/object.c b/object.c index 2aab66c5fd..d0cf60bd90 100644 --- a/object.c +++ b/object.c @@ -114,7 +114,7 @@ rb_obj_equal(VALUE obj1, VALUE obj2) /* * Generates a Fixnum hash value for this object. This function must have the - * property that a.eql?(b) implies a.hash == b.hash. + * property that a.eql?(b) implies a.hash == b.hash. * * The hash value is used along with #eql? by the Hash class to determine if * two objects reference the same hash key. Any hash value that exceeds the