From 645a0ee2b7654f139ed93de091b1b5c7c6ffe962 Mon Sep 17 00:00:00 2001 From: ShaderCompilation Date: Fri, 24 Jul 2026 00:33:12 +0400 Subject: [PATCH] Update 01_syntax.md to make a sentence grammatically correct and more natural --- book/src/01_intro/01_syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/01_intro/01_syntax.md b/book/src/01_intro/01_syntax.md index ae75733310..009a63c2c1 100644 --- a/book/src/01_intro/01_syntax.md +++ b/book/src/01_intro/01_syntax.md @@ -105,7 +105,7 @@ If there are multiple input parameters, they must be separated with commas. ### Type annotations -Since we've been mentioned "types" a few times, let's state it clearly: Rust is a **statically typed language**.\ +Since we've mentioned "types" a few times, let's state it clearly: Rust is a **statically typed language**.\ Every single value in Rust has a type and that type must be known to the compiler at compile-time. Types are a form of **static analysis**.\