summaryrefslogtreecommitdiffhomepage
path: root/docs/cqueue_api.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/cqueue_api.md')
-rw-r--r--docs/cqueue_api.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/cqueue_api.md b/docs/cqueue_api.md
index a8be9e86..43f953b3 100644
--- a/docs/cqueue_api.md
+++ b/docs/cqueue_api.md
@@ -68,10 +68,10 @@ int main() {
cqueue_i Q = cqueue_i_init();
// push() and pop() a few.
- c_forrange (i, 20)
+ c_forloop (i, 20)
cqueue_i_push(&Q, i);
- c_forrange (5)
+ c_forloop (5)
cqueue_i_pop(&Q);
c_foreach (i, cqueue_i, Q)