From b705931ff033018128824332de483c4c7f57be76 Mon Sep 17 00:00:00 2001 From: Joel de Guzman Date: Thu, 13 Oct 2005 11:58:53 +0000 Subject: [PATCH] tweak: wrong c++ code written in python [SVN r31307] --- 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 5cb9c60d..940f36ca 100644 --- a/doc/tutorial/doc/tutorial.qbk +++ b/doc/tutorial/doc/tutorial.qbk @@ -1307,7 +1307,7 @@ __tip__ The astute reader might have noticed that the [^extract] facility in fact solves the mutable copying problem: dict d = extract(x.attr("__dict__")); - d['whatever'] = 3; # modifies x.__dict__ ! + d["whatever"] = 3; // modifies x.__dict__ ! [endsect]