From 410a4f35105cfad6aa1c13e419c94699f8d27f3c Mon Sep 17 00:00:00 2001 From: colinleach Date: Thu, 18 Jan 2024 13:41:05 -0700 Subject: [PATCH] Update exercises/practice/reverse-string/.approaches/introduction.md Co-authored-by: Jon Calder --- 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 f51d60c7..4efd7a61 100644 --- a/exercises/practice/reverse-string/.approaches/introduction.md +++ b/exercises/practice/reverse-string/.approaches/introduction.md @@ -1,6 +1,6 @@ # Introduction -There are surprising many ways to solve this exercise. +There are a surprising variety of ways to approach this exercise. We will start with simple approaches, considering some variations in syntax, then go on to look at vector operations and run-time performance. ## General considerations.