diff options
| author | Mikkel Thestrup <mithe24@student.sdu.dk> | 2025-12-11 14:43:23 +0100 |
|---|---|---|
| committer | Mikkel Thestrup <mithe24@student.sdu.dk> | 2025-12-11 14:43:23 +0100 |
| commit | 6a2e3b59754dad7d013179bd2cb53c1a802c2046 (patch) | |
| tree | 9275d999b5709926ca334d6ad72ff38313cd03b9 /src | |
| parent | 5706a0d893e014acca2b58e747273893a5cf16f0 (diff) | |
| download | cycle-detector-6a2e3b59754dad7d013179bd2cb53c1a802c2046.tar.gz cycle-detector-6a2e3b59754dad7d013179bd2cb53c1a802c2046.zip | |
Fixed spelling
Diffstat (limited to 'src')
| -rw-r--r-- | src/linked_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linked_list.c b/src/linked_list.c index 6335c3d..2023c65 100644 --- a/src/linked_list.c +++ b/src/linked_list.c @@ -3,7 +3,7 @@ LinkedList *linked_list_new(void) { /* Note that the members of the linked list - * is initialized to 0 when using calloc() */ + * are initialized to 0 when using calloc() */ LinkedList *ll = (LinkedList *)calloc(1, sizeof(LinkedList)); if (!ll) return NULL; |