diff options
author | drbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-05-31 21:30:18 +0000 |
---|---|---|
committer | drbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-05-31 21:30:18 +0000 |
commit | c458f08e90ca04bb2c201c55e510686853a86ce7 (patch) | |
tree | 64f8442ffa183ba208926ab81aee83c023cf04d8 | |
parent | 960660353f59126d66b1bc2b08d97f5192acdf1b (diff) |
* object.c (rb_equal): Let Object be a link in #=== documentation.
Patch by Zachary Scott. [ruby-trunk - Feature #6518]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35854 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | object.c | 6 |
2 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +Fri Jun 1 06:29:42 2012 Eric Hodel <[email protected]> + + * 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 <[email protected]> * ext/dl/lib/dl/struct.rb (DL::CStructEntity::size): Refactored ::size @@ -42,9 +42,9 @@ static ID id_const_missing; * call-seq: * obj === other -> true or false * - * Case Equality---For class <code>Object</code>, effectively the same - * as calling <code>#==</code>, but typically overridden by descendants - * to provide meaningful semantics in <code>case</code> statements. + * Case Equality -- For class Object, effectively the same as calling + * <code>#==</code>, but typically overridden by descendants to provide + * meaningful semantics in +case+ statements. */ VALUE |