diff --git a/ChangeLog b/ChangeLog index ec5fe8161d..0ffe727ec1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Jun 1 06:29:42 2012 Eric Hodel + + * object.c (rb_equal): Let Object be a link in #=== documentation. + Patch by Zachary Scott. [ruby-trunk - Feature #6518] + Thu May 31 09:27:06 2012 Eric Hodel * ext/dl/lib/dl/struct.rb (DL::CStructEntity::size): Refactored ::size diff --git a/object.c b/object.c index 7b48ebf234..e1ad798480 100644 --- a/object.c +++ b/object.c @@ -42,9 +42,9 @@ static ID id_const_missing; * call-seq: * obj === other -> true or false * - * Case Equality---For class Object, effectively the same - * as calling #==, but typically overridden by descendants - * to provide meaningful semantics in case statements. + * Case Equality -- For class Object, effectively the same as calling + * #==, but typically overridden by descendants to provide + * meaningful semantics in +case+ statements. */ VALUE