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++]