Skip to content

Commit

Permalink
Merge pull request #37 from mseri/master
Browse files Browse the repository at this point in the history
xml-light2: fix typo after refactoring
  • Loading branch information
mseri authored Jan 10, 2018
2 parents ef511d5 + e2a526b commit 467aeeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xml-light2/xml.ml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ let esc_pcdata data =
let buf = Buffer.create (String.length data + 10) in
String.iter (fun c ->
let s = match c with
| '>' -> ">;"
| '>' -> ">"
| '<' -> "&lt;"
| '&' -> "&amp;"
| '"' -> "&quot;"
Expand Down

0 comments on commit 467aeeb

Please sign in to comment.