From 4df7f1c247cce348df0951c0caa455c515e992bf Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Fri, 27 May 2011 17:11:44 +0000 Subject: [PATCH] libs/python/doc/tutorial/doc/tutorial.qbk: fixing small oversight (issue #5574) [SVN r72220] --- doc/tutorial/doc/html/index.html | 2 +- doc/tutorial/doc/tutorial.qbk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorial/doc/html/index.html b/doc/tutorial/doc/html/index.html index d63480c1..6e43c390 100644 --- a/doc/tutorial/doc/html/index.html +++ b/doc/tutorial/doc/html/index.html @@ -124,7 +124,7 @@

>>> import hello_ext
->>> print hello.greet()
+>>> print hello_ext.greet()
 hello, world
 

diff --git a/doc/tutorial/doc/tutorial.qbk b/doc/tutorial/doc/tutorial.qbk index f1697fae..94ecc55b 100644 --- a/doc/tutorial/doc/tutorial.qbk +++ b/doc/tutorial/doc/tutorial.qbk @@ -62,7 +62,7 @@ resulting DLL is now visible to Python. Here's a sample Python session: [python] >>> import hello_ext - >>> print hello.greet() + >>> print hello_ext.greet() hello, world [c++]