Merge pull request #37 from abyx/fix_typo_in_proxy_project.
authorJoe O'Brien <joe@theedgecase.com>
Sat, 30 Apr 2011 17:47:02 +0000 (10:47 -0700)
committerJoe O'Brien <joe@theedgecase.com>
Sat, 30 Apr 2011 17:47:02 +0000 (10:47 -0700)
Fix typo in proxy project

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