Doc: Corrected syntax for return annotation (GH-16265)

Signed-off-by: Jason Plurad <pluradj@us.ibm.com>
This commit is contained in:
Jason Plurad 2019-09-19 01:24:29 -04:00 committed by Stéphane Wirtel
parent 42acb7b8d2
commit 9ab6038fe8

View file

@ -400,7 +400,7 @@ If a :keyword:`finally` clause is present, the :keyword:`finally` clause will ex
For example::
>>> def bool_return(): -> bool:
>>> def bool_return():
... try:
... return True
... finally: