Skip to content

Commit 19501aa

Browse files
authored
Merge pull request #90 from soyoo/patch-1
fix some mistake in deq_api.md
2 parents 4c58ada + 2b0a8f6 commit 19501aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/deq_api.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ int main(void) {
111111
puts("");
112112

113113
c_forlist (i, int, {1, 4, 5, 22, 33, 2})
114-
Deque_push_back(&q, *i.ref)
114+
Deque_push_back(&q, *i.ref);
115115

116116
c_foreach (i, Deque, q)
117117
printf(" %d", *i.ref);
@@ -132,5 +132,5 @@ Output:
132132
```
133133
10
134134
10 1 4 5 22 33 2
135-
8 20 9 10 1 4 5 22 33 2 1
135+
8 20 9 10 1 4 5 22 33 2 11
136136
```

0 commit comments

Comments
 (0)