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]