Fixed a syntax error in a docstring

This commit is contained in:
Alex Gaynor 2019-07-23 22:23:04 -04:00 committed by GitHub
parent e79b08e11c
commit 9b1edcabca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -16,6 +16,7 @@ you need is in the top-level of the zope.interface package, e.g.::
@implementer(IFoo)
class Foo:
pass
print(IFoo.implementedBy(Foo)) # True
print(IFoo.providedBy(Foo())) # True