From 28caa2a988482ca04c91cd6e0ab24718f68ad006 Mon Sep 17 00:00:00 2001 From: dcodesdev <101001810+dcodesdev@users.noreply.github.com> Date: Sun, 9 Jun 2024 07:23:12 +0300 Subject: [PATCH] starter update --- challenges/mutable-variables/src/starter.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/challenges/mutable-variables/src/starter.rs b/challenges/mutable-variables/src/starter.rs index 247237c..9d67e5b 100644 --- a/challenges/mutable-variables/src/starter.rs +++ b/challenges/mutable-variables/src/starter.rs @@ -1,7 +1,7 @@ pub fn mutating_variables() -> String { - // Declare a mutable variable `text` and assign it the value "hello" + // 1. Declare a mutable variable `text` with any value - // Reassign the value of `text` to "bye" + // 2. Reassign the value of `text` to a new value - // Return the final value of `text` + // 3. Return the value of `text` }