From 16314e0e199051289075c9e3dab425ce3fb52719 Mon Sep 17 00:00:00 2001 From: jcalabro Date: Mon, 8 May 2023 11:49:52 -0400 Subject: [PATCH] Fix langref typo --- doc/langref.html.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/langref.html.in b/doc/langref.html.in index 69ad0624c4..057bb91f71 100644 --- a/doc/langref.html.in +++ b/doc/langref.html.in @@ -2983,7 +2983,7 @@ test "using slices for strings" { const world: []const u8 = "世界"; var all_together: [100]u8 = undefined; - // You can use slice syntax with at least one runtime-know index on an + // You can use slice syntax with at least one runtime-known index on an // array to convert an array into a slice. var start : usize = 0; const all_together_slice = all_together[start..];