summaryrefslogtreecommitdiff
path: root/wk5/pset
diff options
context:
space:
mode:
authorFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2024-04-28 22:37:23 +0000
committerFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2024-04-28 22:37:23 +0000
commit013ba49226f5cc86d29dc152241f6ee8a435def6 (patch)
treed448bce6b257d4695d174098cda5892d8021e2eb /wk5/pset
parentf0ab3858e266f33cbf6140da699200612289f808 (diff)
Sun, Apr 28, 2024, 3:37 PM -07:00
Diffstat (limited to 'wk5/pset')
-rw-r--r--wk5/pset/speller/dictionary.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wk5/pset/speller/dictionary.c b/wk5/pset/speller/dictionary.c
index b0d1323..bb338b6 100644
--- a/wk5/pset/speller/dictionary.c
+++ b/wk5/pset/speller/dictionary.c
@@ -71,7 +71,7 @@ bool load(const char *dictionary)
ptr->next = NULL;
// hash the word to find the bucket it goes in
int val = hash(word);
- //
+ // put
if (table(val)->next != NULL)
{
char = 0;