Skip to content

Commit

Permalink
scp-2883 - as suggested in review (correction)
Browse files Browse the repository at this point in the history
  • Loading branch information
yveshauser committed Oct 15, 2021
1 parent 115869a commit a565955
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -266,7 +266,7 @@ instance FromJSON Cycle where
<*> return False

unconsConstant :: Char -> Text -> Maybe Text
unconsConstant c t | T.head s == c = Just (T.tail t)
unconsConstant c t | T.head t == c = Just (T.tail t)
unconsConstant _ _ = Nothing

hush :: Either a b -> Maybe b
Expand Down

0 comments on commit a565955

Please sign in to comment.