From 56abb105f4cee18f153c6246503a0d4072c7666a Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Wed, 5 Sep 2018 00:13:51 -0400 Subject: [PATCH] DOC: Avoid confusing usage of `implement`. --- docs/usage.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage.rst b/docs/usage.rst index 1518fd8..a0d8016 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -7,7 +7,7 @@ Declaring Interfaces An interface describes a collection of methods and properties that should be provided by implementors. -We implement an interface by subclassing from :class:`interface.Interface` and +We create an interface by subclassing from :class:`interface.Interface` and defining stubs for methods that should be part of the interface: .. code-block:: python