Skip to content

Commit

Permalink
Fix typos in documentation examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
vslavik committed Jul 6, 2012
1 parent 524f75d commit fe7c716
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/xmlwrapp/node.h
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ class XMLWRAPP_API node
Example:
@code
xml::nodes_view persons(root.elements("person"));
xml::nodes_view view(root.elements("person"));
for (xml::nodes_view::iterator i = view.begin(); i != view.end(); ++i)
{
...
Expand All @@ -698,7 +698,7 @@ class XMLWRAPP_API node
Example:
@code
xml::const_nodes_view persons(root.elements("person"));
xml::const_nodes_view view(root.elements("person"));
for (xml::const_nodes_view::const_iterator i = view.begin();
i != view.end();
++i)
Expand Down

0 comments on commit fe7c716

Please sign in to comment.