From 7e62e3a54f887848c2fdc71c7568501bd2196c60 Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Mon, 31 Aug 2015 23:41:19 +0200 Subject: [PATCH] search -> search_node - Issue 1617 --- docs/book/nodes.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/book/nodes.txt b/docs/book/nodes.txt index 8e3e302a..f0d69eca 100644 --- a/docs/book/nodes.txt +++ b/docs/book/nodes.txt @@ -108,10 +108,10 @@ def dosomething(ctx): nd1 = ctx.path.make_node('foo.txt') <2> print(nd1) - nd2 = ctx.path.search('foo.txt') <3> + nd2 = ctx.path.search_node('foo.txt') <3> print(nd2) - nd3 = ctx.path.search('bar.txt') <4> + nd3 = ctx.path.search_node('bar.txt') <4> print(nd3) nd2.write('some text') <5>