From 4403fbfd69e533d9d4e004acfd512fd08db2c77a Mon Sep 17 00:00:00 2001 From: jakthom Date: Sun, 12 Mar 2023 21:03:27 -0400 Subject: [PATCH] Compile time err not runtime err --- src/primitives/array.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/primitives/array.md b/src/primitives/array.md index 3811bb6d7f..9cec24d699 100644 --- a/src/primitives/array.md +++ b/src/primitives/array.md @@ -63,7 +63,7 @@ fn main() { } } - // Out of bound indexing causes runtime error. + // Out of bound indexing causes compile time error. //println!("{}", xs[5]); } ```