From 30a6f40e08e69664d3dde736481b22aa578eb71b Mon Sep 17 00:00:00 2001 From: Glenn Jackman Date: Sun, 21 Jan 2024 12:19:26 -0500 Subject: [PATCH] Update exercises/practice/reverse-string/.approaches/introduction.md Co-authored-by: Isaac Good --- exercises/practice/reverse-string/.approaches/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/practice/reverse-string/.approaches/introduction.md b/exercises/practice/reverse-string/.approaches/introduction.md index 20715c8f..0a4f1987 100644 --- a/exercises/practice/reverse-string/.approaches/introduction.md +++ b/exercises/practice/reverse-string/.approaches/introduction.md @@ -37,7 +37,7 @@ For more details, go to the [Looping approach][app-loop]. ## Which approach to use? Calling out to `rev` makes this exercise extremely trivial. -In a work environment, it's exactly the approach to take. +In a production environment, it's exactly the right approach to take. If you're interested in learning about bash loops and parameter expansion, experimenting with the loop approach is more interesting.