remove odd utf-8 whitespace
broke the EvilSplicer on C locale
This commit is contained in:
parent
78e90130c3
commit
a143ab4451
1 changed files with 1 additions and 1 deletions
|
@ -300,7 +300,7 @@ secretProblem :: Secret -> Maybe Text
|
|||
secretProblem s
|
||||
| B.null s = Just "The secret phrase cannot be left empty. (Remember that punctuation and white space is ignored.)"
|
||||
| B.length s < 6 = Just "Enter a longer secret phrase, at least 6 characters, but really, a phrase is best! This is not a password you'll need to enter every day."
|
||||
| s == toSecret sampleQuote = Just "Speaking of foolishness, don't paste in the example I gave. Enter a different phrase, please!"
|
||||
| s == toSecret sampleQuote = Just "Speaking of foolishness, don't paste in the example I gave. Enter a different phrase, please!"
|
||||
| otherwise = Nothing
|
||||
|
||||
toSecret :: Text -> Secret
|
||||
|
|
Loading…
Reference in a new issue