summaryrefslogtreecommitdiff
path: root/wk5/pset/speller
diff options
context:
space:
mode:
authorFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2024-04-28 23:14:53 +0000
committerFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2024-04-28 23:14:53 +0000
commitd4a281b86465d594b319537193be95f44f4536cf (patch)
treeea583e9b85ba0d06f6c79e8954a3d52b3808d0b8 /wk5/pset/speller
parent5fa305570723eb2e14f4b52fadd8d13960af3b43 (diff)
Sun, Apr 28, 2024, 4:14 PM -07:00
Diffstat (limited to 'wk5/pset/speller')
-rw-r--r--wk5/pset/speller/dictionary.c3
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;
}