From d31b9dd6613b3c036b551af5e19d9df84fd4abc2 Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Sat, 29 Jun 2019 09:10:51 +0200 Subject: [PATCH] Fix HINT for filter --- intro/part6/src/Page/Article/Editor.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intro/part6/src/Page/Article/Editor.elm b/intro/part6/src/Page/Article/Editor.elm index d36b864..78b3f2c 100644 --- a/intro/part6/src/Page/Article/Editor.elm +++ b/intro/part6/src/Page/Article/Editor.elm @@ -566,7 +566,7 @@ toTagList tagString = will result in an error! If it has been fixed, saving will work and the tags will be accepted. - 💡 HINT: Here's how to remove all the "foo" strings from a list of strings: + 💡 HINT: Here's how to keep only the "foo" strings in a list of strings: List.filter (\str -> str == "foo") listOfStrings -}