From a587117b231b05da9a527f7261ecdbaabf8d4343 Mon Sep 17 00:00:00 2001 From: Graham Dumpleton Date: Tue, 13 Aug 2013 22:04:22 +0800 Subject: [PATCH] Fix typo in documentation. --- src/wrappers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wrappers.py b/src/wrappers.py index 512fb06..cc8306e 100644 --- a/src/wrappers.py +++ b/src/wrappers.py @@ -40,8 +40,8 @@ class _ObjectProxyMetaType(type): def __new__(cls, name, bases, dictionary): # Copy our special properties into the class so that they # always take precedence over attributes of the same name added - # during construction of a derived class. This is so save - # duplicating them in all derived classes. + # during construction of a derived class. This is to save + # duplicating the implementation for them in all derived classes. dictionary.update(vars(_ObjectProxyMethods))