Fix quotation in PEP-0505 (#122)

The quotation which is explaining the None-aware expression in English was
closing the quote using two double quotes.
This commit is contained in:
Fabian Neundorf 2016-10-26 15:45:25 +02:00 committed by Chris Angelico
parent 54c54e9b20
commit d0354dd64f
1 changed files with 1 additions and 1 deletions

View File

@ -1010,7 +1010,7 @@ Finally, observe that short circuiting adjacent operators is not at all the same
If ``user`` is not ``None``, then ``user.first_name`` is evaluated. If
``user.first_name`` evaluates to ``None``, then ``user.first_name.upper()`` is
an error! In English, this expression says, "``user`` is optional but if it has
a value, then it must have a ``first_name``, too.""
a value, then it must have a ``first_name``, too."
If ``first_name`` is supposed to be optional attribute, then the expression must
make that explicit::