From 3e3b2d3a94fc0a11540b2bfec9b7987fbb76f714 Mon Sep 17 00:00:00 2001 From: William Jackson Date: Fri, 2 Oct 2015 18:23:29 -0500 Subject: [PATCH] Fix mispellings --- src/koans/02_strings.clj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/koans/02_strings.clj b/src/koans/02_strings.clj index f0332c0..92f4817 100644 --- a/src/koans/02_strings.clj +++ b/src/koans/02_strings.clj @@ -27,13 +27,13 @@ "How about joining together elements in a list?" (= __ (string/join '(1 2 3))) - "What if you wanted to seperate them out?" + "What if you wanted to separate them out?" (= "1, 2, 3" (string/join __ '(1 2 3))) - "Maybe you want to seperate out all you're lines" + "Maybe you want to separate out all your lines" (= [__ __ __] (string/split-lines "1\n2\n3")) - "You may want to make sure you're words are backwards" + "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"