Skip to content

Commit

Permalink
Remove rogue escape ' in show
Browse files Browse the repository at this point in the history
  • Loading branch information
nwolverson committed Apr 5, 2024
1 parent 75a86f3 commit 7aa33a8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Data/Show.erl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ showStringImpl(S) ->
$\r -> <<"\\r"/utf8>>;
$\t -> <<"\\t"/utf8>>;
$\v -> <<"\\v"/utf8>>;
$\' -> <<"\\'"/utf8>>;
$\" -> <<"\\\""/utf8>>;
_ -> <<C/utf8>>
end end,
Expand Down

0 comments on commit 7aa33a8

Please sign in to comment.