diff --git a/doc/tutorial/doc/extracting_c___objects.html b/doc/tutorial/doc/extracting_c___objects.html index 6000821b..a6ba5444 100644 --- a/doc/tutorial/doc/extracting_c___objects.html +++ b/doc/tutorial/doc/extracting_c___objects.html @@ -57,7 +57,7 @@ test for extractibility:

The astute reader might have noticed that the extract<T> -facility in fact solves mutable copying problem:

+facility in fact solves the mutable copying problem:

     dict d = extract<dict>(x.attr("__dict__"));
     d['whatever'] = 3;          #modifies x.__dict__ !