r-lib / xmlparsedata

R code parse data as an XML tree
https://r-lib.github.io/xmlparsedata/
Other
23 stars 7 forks source link

Fix missing space in XML header #7

Closed renkun-ken closed 5 years ago

renkun-ken commented 5 years ago

XML validator complains the missing space in the XML header produced by xml_parse_data.

<?xml version="1.0" encoding="UTF-8"standalone="yes" ?>

should be

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
codecov-io commented 5 years ago

Codecov Report

Merging #7 into master will not change coverage. The diff coverage is 100%.

Impacted file tree graph

@@          Coverage Diff          @@
##           master     #7   +/-   ##
=====================================
  Coverage     100%   100%           
=====================================
  Files           2      2           
  Lines          56     56           
=====================================
  Hits           56     56
Impacted Files Coverage Δ
R/package.R 100% <100%> (ø) :arrow_up:

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 4b03136...4dbbfac. Read the comment docs.

gaborcsardi commented 5 years ago

Thanks!