From a06540e4719edc8d1deee1f5acdb32865cb35af5 Mon Sep 17 00:00:00 2001
From: Joel de Guzman
Date: Thu, 10 Oct 2002 00:08:37 +0000
Subject: [PATCH] grammar correction
[SVN r15835]
---
doc/tutorial/doc/extracting_c___objects.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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__ !