Fix some typos

This commit is contained in:
Vipul A M 2013-06-07 16:23:29 +05:30
parent 9c89b29138
commit 2c92f5b92f
2 changed files with 2 additions and 2 deletions

@ -164,7 +164,7 @@ def delegate(*methods)
#
# Reason is twofold: On one hand doing less calls is in general better.
# On the other hand it could be that the target has side-effects,
# whereas conceptualy, from the user point of view, the delegator should
# whereas conceptually, from the user point of view, the delegator should
# be doing one call.
if allow_nil
module_eval(<<-EOS, file, line - 3)

@ -115,7 +115,7 @@ def max_mtime(paths)
end
def compile_glob(hash)
hash.freeze # Freeze so changes aren't accidently pushed
hash.freeze # Freeze so changes aren't accidentally pushed
return if hash.empty?
globs = hash.map do |key, value|