summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Bom <niels-bom-md@users.noreply.github.com>2017-03-20 10:34:54 +0100
committerMichael Howitz <mh@gocept.com>2017-03-20 13:41:42 +0100
commit76abebe7a11b092fdc3e39b1bd44cc14d4cfa3cc (patch)
treeacfc99919638cc5331542e020c47f0e3a1665b1a
parentb8a36f1b6aa2c4d4470c08b84bb6f5031e33ab30 (diff)
downloadzope-interface-76abebe7a11b092fdc3e39b1bd44cc14d4cfa3cc.tar.gz
Fix sentence in README
Classes (factories) _implement_, objects _provide_. After first carefully explaining the difference, the docs mix them up.
-rw-r--r--docs/README.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/README.rst b/docs/README.rst
index 0c55c10..e54b692 100644
--- a/docs/README.rst
+++ b/docs/README.rst
@@ -218,7 +218,7 @@ Of course, ``Foo`` doesn't *provide* ``IFoo``, it *implements* it:
>>> IFoo.providedBy(Foo)
False
-We can also ask what interfaces are implemented by an object:
+We can also ask what interfaces are implemented by a class:
.. doctest::