From 76abebe7a11b092fdc3e39b1bd44cc14d4cfa3cc Mon Sep 17 00:00:00 2001 From: Niels Bom Date: Mon, 20 Mar 2017 10:34:54 +0100 Subject: [PATCH] Fix sentence in README Classes (factories) _implement_, objects _provide_. After first carefully explaining the difference, the docs mix them up. --- docs/README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README.rst b/docs/README.rst index 0c55c10e..e54b6920 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::