$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r72220 - in trunk/libs/python/doc/tutorial/doc: . html
From: rwgk_at_[hidden]
Date: 2011-05-27 13:11:45
Author: rwgk
Date: 2011-05-27 13:11:44 EDT (Fri, 27 May 2011)
New Revision: 72220
URL: http://svn.boost.org/trac/boost/changeset/72220
Log:
libs/python/doc/tutorial/doc/tutorial.qbk: fixing small oversight (issue #5574)
Text files modified: 
   trunk/libs/python/doc/tutorial/doc/html/index.html |     2 +-                                      
   trunk/libs/python/doc/tutorial/doc/tutorial.qbk    |     2 +-                                      
   2 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/libs/python/doc/tutorial/doc/html/index.html
==============================================================================
--- trunk/libs/python/doc/tutorial/doc/html/index.html	(original)
+++ trunk/libs/python/doc/tutorial/doc/html/index.html	2011-05-27 13:11:44 EDT (Fri, 27 May 2011)
@@ -124,7 +124,7 @@
 <p>
     </p>
 <pre class="programlisting"><span class="special">>>></span> <span class="keyword">import</span> <span class="identifier">hello_ext</span>
-<span class="special">>>></span> <span class="keyword">print</span> <span class="identifier">hello</span><span class="special">.</span><span class="identifier">greet</span><span class="special">()</span>
+<span class="special">>>></span> <span class="keyword">print</span> <span class="identifier">hello_ext</span><span class="special">.</span><span class="identifier">greet</span><span class="special">()</span>
 <span class="identifier">hello</span><span class="special">,</span> <span class="identifier">world</span>
 </pre>
 <p>
Modified: trunk/libs/python/doc/tutorial/doc/tutorial.qbk
==============================================================================
--- trunk/libs/python/doc/tutorial/doc/tutorial.qbk	(original)
+++ trunk/libs/python/doc/tutorial/doc/tutorial.qbk	2011-05-27 13:11:44 EDT (Fri, 27 May 2011)
@@ -62,7 +62,7 @@
 [python]
 
     >>> import hello_ext
-    >>> print hello.greet()
+    >>> print hello_ext.greet()
     hello, world
 
 [c++]