diff options
Diffstat (limited to 'src/interp/guess.boot')
-rw-r--r-- | src/interp/guess.boot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/guess.boot b/src/interp/guess.boot index 2947b34c..b7d2e000 100644 --- a/src/interp/guess.boot +++ b/src/interp/guess.boot @@ -277,7 +277,7 @@ deltaWordEntry(word,entry) == word = entry => 0 word.0 ~= entry.0 => 1000 #word > 2 and stringPrefix?(word,entry) => 1 - ABS(diff := # word - # entry) > 4 => 1000 + abs(diff := # word - # entry) > 4 => 1000 canForgeWord(word,entry) --+ Note these are optimized definitions below-- see commented out versions |