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/string.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/std/string.md') diff --git a/docs/std/string.md b/docs/std/string.md index 252b737..ae4b738 100644 --- a/docs/std/string.md +++ b/docs/std/string.md @@ -8,7 +8,7 @@ import "std/string.zc" fn main() { - var s = String::from("Hello"); + let s = String::from("Hello"); s.append(String::from(" World")); println "{s}"; // Prints "Hello World" -- cgit v1.2.3