summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorayumin <ayumin@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-08-21 13:03:30 +0000
committerayumin <ayumin@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-08-21 13:03:30 +0000
commit75e2a26b84e66496644a1a3c32067a7e17f1c7ae (patch)
tree95cd5d1d0e2d85e45e619f29642305839f31b510 /lib
parentd4c84d175eb28d7c44a189f4fce6f23799465976 (diff)
* lib/observer.rb: fix typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36757 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/observer.rb2
1 files changed, 1 insertions, 1 deletions
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 <tt>*arg</tt>.
+ # This will invoke the method named in #add_observer, passing <tt>*arg</tt>.
# The changed state is then set to +false+.
#
# <tt>*arg</tt>:: Any arguments to pass to the observers.