diff --git a/src/koans/02_strings.clj b/src/koans/02_strings.clj index af4e555..f2d9623 100644 --- a/src/koans/02_strings.clj +++ b/src/koans/02_strings.clj @@ -36,7 +36,7 @@ "You may want to make sure your words are backwards" (= __ (string/reverse "hello")) - "Maybe you want to find the index of the first occurence of a substring" + "Maybe you want to find the index of the first occurrence of a substring" (= 0 (string/index-of "hello world" __)) "Or maybe the last index of the same"