From: Kornelius Kalnbach Date: 2008-12-30T22:31:34+09:00 Subject: [ruby-core:20991] [Bug #952] rb_obj_not_match documentation is buggy Bug #952: rb_obj_not_match documentation is buggy http://redmine.ruby-lang.org/issues/show/952 Author: Kornelius Kalnbach Status: Open, Priority: Normal Category: DOC, Target version: 1.9.1 The documentation for Object#!~ is currently incorrect and grammatically wrong, it says: /* * call-seq: * obj !~ other => nil * * Returns true if two objects does not match, using =~ method. */ It should be replaced with something like this: /* * call-seq: * obj !~ other => true or false * * Returns true if two objects do not match (using the =~ * method), otherwise false. */ Patch attached. ---------------------------------------- http://redmine.ruby-lang.org