[3.8] bpo-38218: Doc: Corrected syntax for return annotation (GH-16265) (GH-16274)

Signed-off-by: Jason Plurad <pluradj@us.ibm.com>
(cherry picked from commit 9ab6038fe8)

Co-authored-by: Jason Plurad <pluradj@us.ibm.com>
This commit is contained in:
Miss Islington (bot) 2019-09-18 22:42:57 -07:00 committed by Stéphane Wirtel
parent 064e1e3841
commit 6612a4fd36

View file

@ -353,7 +353,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: