Skip to content

Commit

Permalink
xml-light2: fix typo after refactoring
Browse files Browse the repository at this point in the history
Signed-off-by: Marcello Seri <[email protected]>
  • Loading branch information
Marcello Seri committed Jan 10, 2018
1 parent ef511d5 commit e2a526b
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
| '>' -> "&gt;;"
| '>' -> "&gt;"
| '<' -> "&lt;"
| '&' -> "&amp;"
| '"' -> "&quot;"
Expand Down

0 comments on commit e2a526b

Please sign in to comment.