From bb7d1821d4b1fabc24df060e60ab3fddf80fd681 Mon Sep 17 00:00:00 2001 From: koeir Date: Fri, 27 Mar 2026 20:48:42 +0800 Subject: [PATCH] Fixed typo convenient is misspelled as "convinient" --- .../version-0.15.x/01-language-basics/14-slices.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/versioned_docs/version-0.15.x/01-language-basics/14-slices.mdx b/website/versioned_docs/version-0.15.x/01-language-basics/14-slices.mdx index 6bfa031..c79b28d 100644 --- a/website/versioned_docs/version-0.15.x/01-language-basics/14-slices.mdx +++ b/website/versioned_docs/version-0.15.x/01-language-basics/14-slices.mdx @@ -6,7 +6,7 @@ import Slices2 from "!!raw-loader!./14.slices-2.zig"; # Slices Slices can be thought of many-item pointers (`[*]T`) with a length (`usize`). -These use the syntax `[]T`. Slices are easier to use safely and more convinient +These use the syntax `[]T`. Slices are easier to use safely and more convenient than many-item pointers, as they store the valid length of the buffer with them. Slices are sometimes referred to as "fat pointers" as they're typically double the size of a normal pointer. Slices are the most common way to pass around