From f1707e44fb21e8e64c7f470bb0984d6b6b6b7829 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 28 Jun 2016 00:56:31 +0000 Subject: [PATCH] Fix typo [ci skip] * object.c (rb_mod_eqq): [DOC] Fix typo in RDoc. [Fix GH-1393] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55517 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ object.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6be1c45802..27af2cdad2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Jun 28 09:56:29 2016 Stefan Schussler + + * object.c (rb_mod_eqq): [DOC] Fix typo in RDoc. [Fix GH-1393] + Tue Jun 28 02:41:32 2016 NARUSE, Yui * insns.def (opt_plus): use `- 1` instead of `& (~1)` to allow diff --git a/object.c b/object.c index cc674b1584..41cdbb69d2 100644 --- a/object.c +++ b/object.c @@ -1523,7 +1523,7 @@ rb_mod_freeze(VALUE mod) * mod === obj -> true or false * * Case Equality---Returns true if obj is an - * instance of mod or and instance of one of mod's descendants. + * instance of mod or an instance of one of mod's descendants. * Of limited use for modules, but can be used in case statements * to classify objects by class. */