Skip to content

Commit

Permalink
fix: Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
sgillespie committed Sep 23, 2023
1 parent 26a7058 commit 769b9c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Data/Gibberish/Format.hs
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ formatLine (MaxLen maxLen) (Separator sep) =
concatLine len (t : ts)
| len - Text.length t > 0 = t <> concatLine (len - Text.length t) ts
| otherwise = ""
concatLine _ [] = error $ "Ran out of words"
concatLine _ [] = error "Ran out of words"

0 comments on commit 769b9c1

Please sign in to comment.