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.