diff --git a/snippets/reverse_string.md b/snippets/reverse_string.md index 02356cf36..87932c139 100644 --- a/snippets/reverse_string.md +++ b/snippets/reverse_string.md @@ -5,7 +5,7 @@ tags: string,beginner Returns the string after reversing it. -Use string slicing to rotate the string. +Use string slicing to reverse the string. ```py def reverse_string(string):