diff --git a/ChangeLog b/ChangeLog index 60cd23b..42e96f7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -34,7 +34,7 @@ Release : March 13th, 2004 Bug fixes for 1.2.2 - Bug fix in the position() : it was counting the order of a node within it's brotherhood, which -was correct only if the search was like *[position()=3] (Thanks Daniel Côté) +was correct only if the search was like *[position()=3] (Thanks Daniel C�t�) Structural changes for 1.2.2 @@ -68,6 +68,6 @@ Bug fixes for 1.2 Structural changes for 1.2 - Group all TinyXPath definitions in a TinyXPath namespace -- New configuration header for global #defines (tinyxpath_conf.h) and exclude debuging member functions with ifdefs +- New configuration header for global #defines (tinyxpath_conf.h) and exclude debugging member functions with ifdefs - Windows : Project with libraries (debug and release) - Update to latest TinyXML code, where user data are defined on the TiXmlBase level diff --git a/xpath_expression.h b/xpath_expression.h index 76752b0..548cf01 100644 --- a/xpath_expression.h +++ b/xpath_expression.h @@ -40,7 +40,7 @@ class expression_result { /// String content TIXML_STRING _S_content; #ifdef TINYXPATH_DEBUG - /// Comment. This is for debuging only, for stack dump + /// Comment. This is for debugging only, for stack dump TIXML_STRING _S_comment; #endif /// bool content @@ -132,7 +132,7 @@ class expression_result { _e_type = e_double; _d_content = d_in; } - /// Set the comment associated with a stack element. This is for debuging + /// Set the comment associated with a stack element. This is for debugging void v_set_comment(const char* cp_in) { #ifdef TINYXPATH_DEBUG _S_comment = cp_in;