diff --git a/source/c09/p17_enforce_coding_conventions_in_classes.rst b/source/c09/p17_enforce_coding_conventions_in_classes.rst index d437a80..1bcd821 100644 --- a/source/c09/p17_enforce_coding_conventions_in_classes.rst +++ b/source/c09/p17_enforce_coding_conventions_in_classes.rst @@ -142,7 +142,7 @@ 它只能在类的实例被创建之后,并且相应的方法解析顺序也已经被设置好了。 最后一个例子还演示了Python的函数签名对象的使用。 -实际上,元类会管理中每个一个调用定义,搜索前一个定义(如果有的话), +实际上,元类将每个可调用定义放在一个类中,搜索前一个定义(如果有的话), 然后通过使用 ``inspect.signature()`` 来简单的比较它们的调用签名。 最后一点,代码中有一行使用了 ``super(self, self)`` 并不是排版错误。