summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2009-10-20 17:40:56 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2009-10-20 17:40:56 +0000
commitc43af7d3b2edb0122de2cfe33d3e6b97e4e356da (patch)
treeaf55f090cbeb8a33dcdc8b927ec6a190680fee99 /src
parent557a690529ab1342c5902b8db28622f4bf263b80 (diff)
Fixed documentation bug
git-svn-id: http://pugixml.googlecode.com/svn/trunk@155 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'src')
-rw-r--r--src/pugixml.hpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/pugixml.hpp b/src/pugixml.hpp
index 062fcdb..528c6cb 100644
--- a/src/pugixml.hpp
+++ b/src/pugixml.hpp
@@ -151,8 +151,8 @@ namespace pugi
const unsigned int parse_eol = 0x0020;
/**
- * This flag determines if attribute value normalization should be performed for all attributes,
- * assuming that their type is not CDATA. This means, that:
+ * This flag determines if attribute value normalization should be performed for all attributes.
+ * This means, that:
* 1. Whitespace characters (new line, tab and space) are replaced with space (' ')
* 2. Afterwards sequences of spaces are replaced with a single space
* 3. Leading/trailing whitespace characters are trimmed
@@ -162,11 +162,10 @@ namespace pugi
const unsigned int parse_wnorm_attribute = 0x0040;
/**
- * This flag determines if attribute value normalization should be performed for all attributes,
- * assuming that their type is CDATA. This means, that whitespace characters (new line, tab and
- * space) are replaced with space (' '). Note, that the actions performed while this flag is on
- * are also performed if parse_wnorm_attribute is on, so this flag has no effect if
- * parse_wnorm_attribute flag is set.
+ * This flag determines if attribute value normalization should be performed for all attributes.
+ * This means, that whitespace characters (new line, tab and space) are replaced with space (' ').
+ * Note, that the actions performed while this flag is on are also performed if parse_wnorm_attribute
+ * is on, so this flag has no effect if parse_wnorm_attribute flag is set.
*
* This flag is on by default.
*/