summaryrefslogtreecommitdiff
path: root/README.txt
diff options
context:
space:
mode:
Diffstat (limited to 'README.txt')
-rw-r--r--README.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.txt b/README.txt
index ae48e4968..73548ee9d 100644
--- a/README.txt
+++ b/README.txt
@@ -293,7 +293,7 @@ A models.py might look like so::
from zope.interface import Attribute
from zope.interface import Interface
- class IMyModel:
+ class IMyModel(Interface):
__name__ = Attribute('Name of the model instance')
class MyModel(UserDict):