String.strip is deprecated, replace with String.trim

This commit is contained in:
Tom Gurion
2017-02-19 22:54:34 +00:00
parent 946f10f30f
commit e81db22b87

View File

@@ -28,7 +28,7 @@ defmodule Strings do
end
koan "Other times a little cleaning is in order" do
assert String.strip(" \n banana\n ") == ___
assert String.trim(" \n banana\n ") == ___
end
koan "Repetition is the mother of learning" do