From c7ae05221278a778bbe914a5faa2276f297bf886 Mon Sep 17 00:00:00 2001 From: dcodesdev <101001810+dcodesdev@users.noreply.github.com> Date: Sat, 30 Nov 2024 12:25:54 +0300 Subject: [PATCH] typo fix --- challenges/control-flow/description.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/control-flow/description.md b/challenges/control-flow/description.md index 247b1d9..0790c45 100644 --- a/challenges/control-flow/description.md +++ b/challenges/control-flow/description.md @@ -27,5 +27,5 @@ assert_eq!(result, "zero"); ## Hints -- You can use the `if`, `else-if`, and `else` keywords to implement the control flow. +- You can use the `if`, `else if`, and `else` keywords to implement the control flow. - Remember to return the result as a `String`.