From: Wincent Colaiuta Date: Fri, 27 Aug 2010 16:31:45 +0000 (+0200) Subject: Fix typo in code documentation comment X-Git-Url: https://git.wincent.com/walrat.git/commitdiff_plain/7de2e38277bce15d65b79d8ddbc50ecb1261f5c4 Fix typo in code documentation comment Signed-off-by: Wincent Colaiuta --- diff --git a/lib/walrat/memoizing.rb b/lib/walrat/memoizing.rb index 56c33d1..cb477a3 100755 --- a/lib/walrat/memoizing.rb +++ b/lib/walrat/memoizing.rb @@ -30,7 +30,7 @@ module Walrat # appropriate to use a memoizer then it will be invoked, otherwise control # will fall through to the real parse method. Turning off memoizing is as # simple as not passing a value with the :memoizer key in the options hash. - # This method defined is in a separate module so that it can easily be + # This method is defined in a separate module so that it can easily be # mixed in with all Parslets, ParsletCombinations and Predicates. def memoizing_parse(string, options = {}) # will use memoizer if available and not instructed to ignore it @@ -52,4 +52,3 @@ module Walrat end end # module Memoizing end # module Walrat -