summaryrefslogtreecommitdiff
path: root/docs/std/queue.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/std/queue.md')
-rw-r--r--docs/std/queue.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/std/queue.md b/docs/std/queue.md
index d463f15..c7db3fd 100644
--- a/docs/std/queue.md
+++ b/docs/std/queue.md
@@ -8,7 +8,7 @@
import "std/queue.zc"
fn main() {
- var q = Queue<int>::new();
+ let q = Queue<int>::new();
q.push(1);
q.push(2);