fixing typo
authorAviv Ben-Yosef <aviv.by@gmail.com>
Sat, 26 Mar 2011 17:14:30 +0000 (19:14 +0200)
committerAviv Ben-Yosef <aviv.by@gmail.com>
Sat, 26 Mar 2011 17:14:30 +0000 (19:14 +0200)
koans/about_proxy_object_project.rb
src/about_proxy_object_project.rb

index a959a80..1c1a8e7 100644 (file)
@@ -6,7 +6,7 @@ require File.expand_path(File.dirname(__FILE__) + '/edgecase')
 # below).  You should be able to initialize the proxy object with any
 # object.  Any messages sent to the proxy object should be forwarded
 # to the target object.  As each message is sent, the proxy should
-# record the name of the method send.
+# record the name of the method sent.
 #
 # The proxy class is started for you.  You will need to add a method
 # missing handler and any other supporting methods.  The specification
index 1d64f0f..483a7d7 100644 (file)
@@ -6,7 +6,7 @@ require File.expand_path(File.dirname(__FILE__) + '/edgecase')
 # below).  You should be able to initialize the proxy object with any
 # object.  Any messages sent to the proxy object should be forwarded
 # to the target object.  As each message is sent, the proxy should
-# record the name of the method send.
+# record the name of the method sent.
 #
 # The proxy class is started for you.  You will need to add a method
 # missing handler and any other supporting methods.  The specification