diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2016-01-12 20:18:12 -0800 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2016-01-12 20:18:12 -0800 |
commit | 71d3a797f4c1991070afb868e584f1ab3e8ad669 (patch) | |
tree | fe5bfda3f197d63968186395c992aa56af1f5ae9 | |
parent | fc6c8633ddd60ff72592986938fa9e0a31f508d1 (diff) |
Adjust parse_embed_pcdata documentation
Since round-tripping should not be a problem any more don't mention it.
-rw-r--r-- | src/pugixml.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pugixml.hpp b/src/pugixml.hpp index 4ed6f55..e561490 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -159,8 +159,8 @@ namespace pugi const unsigned int parse_fragment = 0x1000; // This flag determines if plain character data is be stored in the parent element's value. This significantly changes the structure of - // the document and does not allow some documents to round-trip; this flag is only recommended for parsing documents with a lot of - // PCDATA nodes in a very memory-constrained environment. This flag is off by default. + // the document; this flag is only recommended for parsing documents with many PCDATA nodes in memory-constrained environments. + // This flag is off by default. const unsigned int parse_embed_pcdata = 0x2000; // The default parsing mode. |