words are case-INsensitive, variables remain case-sensitive
This commit is contained in:
parent
561ec1072a
commit
a48d2ab6a6
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ class Dictionary
|
|||
word ||= @vars[ name ]
|
||||
|
||||
# or is it a core word
|
||||
word ||= @words[ name ].nil? ? nil : @words[ name ][:implementation]
|
||||
word ||= @words[ name.downcase ].nil? ? nil : @words[ name.downcase ][:implementation]
|
||||
|
||||
word
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue