From 97d0583c92c733aa8497a99f5267d50151f6e965 Mon Sep 17 00:00:00 2001 From: Steven Date: Sun, 25 Jan 2026 23:54:29 +0000 Subject: fix(docs): replace remaining var references with let --- docs/std/vec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/std/vec.md') diff --git a/docs/std/vec.md b/docs/std/vec.md index 1b48361..7bc7c05 100644 --- a/docs/std/vec.md +++ b/docs/std/vec.md @@ -15,7 +15,7 @@ import "std/vec.zc" fn main() { - var v = Vec::new(); + let v = Vec::new(); v.push(10); v.push(20); -- cgit v1.2.3