diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-01-02 22:47:50 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-01-02 22:47:50 (GMT) |
commit | 002033ed6396ef9062a925b34c889ccd6b16c1ec (patch) | |
tree | bc4a2ff1487122773bf75ce466053deecd425b6d /Doc | |
parent | 12e930f3a4fd84bde01c67976f108000e704d835 (diff) | |
download | cpython-002033ed6396ef9062a925b34c889ccd6b16c1ec.zip cpython-002033ed6396ef9062a925b34c889ccd6b16c1ec.tar.gz cpython-002033ed6396ef9062a925b34c889ccd6b16c1ec.tar.bz2 |
correct word for __annotations__ doc (closes #20110)
Patch from Claudiu Popa.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/reference/datamodel.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index b2847a0..22cac07 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -495,7 +495,7 @@ Callable types | :attr:`__annotations__` | A dict containing annotations | Writable | | | of parameters. The keys of | | | | the dict are the parameter | | - | | names, or ``'return'`` for | | + | | names, and ``'return'`` for | | | | the return annotation, if | | | | provided. | | +-------------------------+-------------------------------+-----------+ |