From 7094d09fccca2966dc65d09901dd78d49abe3adb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Pavi=C4=8Di=C4=87?= Date: Tue, 11 Oct 2022 12:07:27 +0200 Subject: [PATCH] chore: small typo in `variables` challenge (#25) --- public/lessons/variables.cairo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/lessons/variables.cairo b/public/lessons/variables.cairo index df193f2..d8527a1 100644 --- a/public/lessons/variables.cairo +++ b/public/lessons/variables.cairo @@ -21,7 +21,7 @@ // and run the code again. // // The behavior of the code doesn't change. This is because -// the keyword `local` allocates a new variables for the +// the keyword `local` allocates a new variable for the // intermediate values as well. The main difference between // `local` and `tempvar` is explained in the next lesson.