copy-edits 6d7a826

This commit is contained in:
Xavier Noria 2011-02-21 11:01:26 +01:00
parent 843a5b9a3a
commit 9297027e08

@ -48,7 +48,7 @@ def instantiate_observers
observers.each { |o| instantiate_observer(o) }
end
# Add a new Observer to the pool
# Add a new observer to the pool.
def add_observer(observer)
unless observer.respond_to? :update
raise ArgumentError, "observer needs to respond to `update'"
@ -56,14 +56,14 @@ def add_observer(observer)
observer_instances << observer
end
# Notify list of observers of a change
# Notify list of observers of a change.
def notify_observers(*arg)
for observer in observer_instances
observer.update(*arg)
end
end
# Total number of observers
# Total number of observers.
def count_observers
observer_instances.size
end