From 75e2a26b84e66496644a1a3c32067a7e17f1c7ae Mon Sep 17 00:00:00 2001 From: ayumin Date: Tue, 21 Aug 2012 13:03:30 +0000 Subject: [PATCH] * lib/observer.rb: fix typo. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36757 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ lib/observer.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6b447ee1b1..6f91616fd1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Aug 21 21:59:22 2012 Ayumu AIZAWA + + * lib/observer.rb: fix typo. https://github.com/ruby/ruby/pull/162 by + unsymbol (Philip Cunningham). + Tue Aug 21 20:30:06 2012 Benoit Daloze * test/fileutils/test_fileutils.rb (TestFileUtils#teardown): diff --git a/lib/observer.rb b/lib/observer.rb index 688b1f556b..208d8ed6ed 100644 --- a/lib/observer.rb +++ b/lib/observer.rb @@ -184,7 +184,7 @@ module Observable # Notify observers of a change in state *if* this object's changed state is # +true+. # - # This will invoke the method named in #add_observer, pasing *arg. + # This will invoke the method named in #add_observer, passing *arg. # The changed state is then set to +false+. # # *arg:: Any arguments to pass to the observers.