diff options
-rw-r--r-- | wk5/pset/speller/dictionary.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/wk5/pset/speller/dictionary.c b/wk5/pset/speller/dictionary.c index a4e65fe..e088543 100644 --- a/wk5/pset/speller/dictionary.c +++ b/wk5/pset/speller/dictionary.c @@ -38,8 +38,7 @@ bool check(const char *word) // move on to next node current = current->next; } - - + return false; } |