From 4bb5363cf14f6522bb768c2aa1bcbfbb3ab109aa Mon Sep 17 00:00:00 2001 From: Artem Zakirullin Date: Fri, 5 Jul 2024 12:57:09 +0300 Subject: [PATCH] fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4270083..42b2ed0 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ if val > someConstant // 🧠+ Introduce intermediate variables with meaningful names: ```go -isValid = var > someConstant +isValid = val > someConstant isAllowed = condition2 || condition3 isSecure = condition4 && !condition5 // 🧠, we don't need to remember the conditions, there are descriptive variables