Skip to content
Snippets Groups Projects
Verified Commit a37cfcae authored by orestis.malaspin's avatar orestis.malaspin
Browse files

corrected typo

parent 67f0541b
No related branches found
No related tags found
No related merge requests found
Pipeline #24048 passed
...@@ -8,4 +8,4 @@ int main() ...@@ -8,4 +8,4 @@ int main()
set(t, 10); set(t, 10);
printf("%d\n", get(t)); printf("%d\n", get(t));
destroy(&t); destroy(&t);
} }
\ No newline at end of file
...@@ -130,7 +130,7 @@ tab.data[9] = 10; ...@@ -130,7 +130,7 @@ tab.data[9] = 10;
```C ```C
int main() { int main() {
struct table *t = create(); table t;
init(&t); init(&t);
set_a(t, 10); set_a(t, 10);
printf("%d\n", get_a(t)); printf("%d\n", get_a(t));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment