From 8b476e678a8b28bb1885671375a4a7a1b330b16b Mon Sep 17 00:00:00 2001 From: bri-rose Date: Fri, 13 Sep 2024 10:23:05 -0500 Subject: [PATCH] Update info.toml Fixed grammatical error, subject/verb agreement at line 124-125. --- rustlings-macros/info.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rustlings-macros/info.toml b/rustlings-macros/info.toml index 0fe83439..2d420457 100644 --- a/rustlings-macros/info.toml +++ b/rustlings-macros/info.toml @@ -122,7 +122,7 @@ dir = "01_variables" test = false hint = """ We know about variables and mutability, but there is another important type of -variables available: constants. +variable available: constants. Constants are always immutable. They are declared with the keyword `const` instead of `let`.