From 247e5d0351770948394b3fc948356b86123770b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sara=20In=C3=A9s=20Calder=C3=B3n?= Date: Tue, 29 Nov 2016 22:48:54 -0600 Subject: [PATCH] Spelling fix occurrence (#121) Updated spelling of "occurrence" --- src/koans/02_strings.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"