summaryrefslogtreecommitdiff
path: root/docs/samples/xpath_variables.cpp
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2014-10-19 07:34:02 +0000
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2014-10-19 07:34:02 +0000
commit2d4e549049a2ed593f5e295b95371c02540d41b1 (patch)
tree9440534fe81576a5b78c375d00d68d4c63cf120d /docs/samples/xpath_variables.cpp
parentc3eb9c92a86b041b40e70afb32ea66d4369c892b (diff)
docs: Update XPath documentation
Add documentation for xpath_query::evaluate_node and change select_single_node to select_node in documentation and samples. git-svn-id: https://pugixml.googlecode.com/svn/trunk@1066 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'docs/samples/xpath_variables.cpp')
-rw-r--r--docs/samples/xpath_variables.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/samples/xpath_variables.cpp b/docs/samples/xpath_variables.cpp
index 5404c0b..52313bf 100644
--- a/docs/samples/xpath_variables.cpp
+++ b/docs/samples/xpath_variables.cpp
@@ -27,7 +27,7 @@ int main()
std::cout << "Local tool: ";
tools_local[0].node().print(std::cout);
- // You can pass the context directly to select_nodes/select_single_node
+ // You can pass the context directly to select_nodes/select_node
pugi::xpath_node_set tools_local_imm = doc.select_nodes("/Profile/Tools/Tool[@AllowRemote = string($remote)]", &vars);
std::cout << "Local tool imm: ";