From ab2912e3c224b6d092f3f7cd9513708d8425c015 Mon Sep 17 00:00:00 2001 From: Joel de Guzman Date: Thu, 13 Oct 2005 12:02:25 +0000 Subject: [PATCH] minor fix [SVN r31308] --- doc/tutorial/doc/tutorial.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial/doc/tutorial.qbk b/doc/tutorial/doc/tutorial.qbk index 940f36ca..ec862279 100644 --- a/doc/tutorial/doc/tutorial.qbk +++ b/doc/tutorial/doc/tutorial.qbk @@ -1249,7 +1249,7 @@ Python: [python] >>> d = dict(x.__dict__) # copies x.__dict__ - >>> d['whatever'] # modifies the copy + >>> d['whatever'] = 3 # modifies the copy C++: [c++]