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