From b04fcb2a8d20938cfb9c1a47cfcd6079e1230fc3 Mon Sep 17 00:00:00 2001 From: Glenn Jackman <glenn.jackman@gmail.com> Date: Sun, 21 Jan 2024 12:19:45 -0500 Subject: [PATCH] Update exercises/practice/reverse-string/.articles/performance/content.md Co-authored-by: Isaac Good <IsaacG@users.noreply.github.com> --- .../practice/reverse-string/.articles/performance/content.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/exercises/practice/reverse-string/.articles/performance/content.md b/exercises/practice/reverse-string/.articles/performance/content.md index 8d6e4493..a0d5a64d 100644 --- a/exercises/practice/reverse-string/.articles/performance/content.md +++ b/exercises/practice/reverse-string/.articles/performance/content.md @@ -1,7 +1,8 @@ # Performance We usually don't care that much about performance with shell scripts. -But when we can avoid doing something we know is slow, especially if this slow thing is done repeatedly inside a loop, avoid it. +When we know something is slow, we can avoid it. +This matters much more when the operation is done inside loop. ## String length is slow