Skip to content

Commit

Permalink
Fix typo "(&quot);" instead of "(")" in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
roques committed Dec 14, 2010
1 parent 7a1bb6a commit 890facf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/wpart-1.4.1/src/wpart_xs.erl
Expand Up @@ -132,7 +132,7 @@ entitify(B) ->
entitify(B, []).
entitify(<<>>, Acc) ->
lists:reverse(Acc);
entitify(<<34:8, Rest/binary>>, Acc) -> % double quote (&quot);
entitify(<<34:8, Rest/binary>>, Acc) -> % double quote (&quot;)
NewAcc = ["&#34;"|Acc],
entitify(Rest, NewAcc);
entitify(<<38:8, Rest/binary>>, Acc) -> % ampersand (&amp;)
Expand Down

0 comments on commit 890facf

Please sign in to comment.