Update pep-0505.rst (#1370)

Fix missing `
This commit is contained in:
cdjc 2020-04-16 15:22:00 +12:00 committed by GitHub
parent 68c54982c4
commit caf21bf2b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -581,7 +581,7 @@ No-Value Protocol
The operators could be generalised to user-defined types by defining a protocol
to indicate when a value represents "no value". Such a protocol may be a dunder
method ``__has_value__(self)` that returns ``True`` if the value should be
method ``__has_value__(self)`` that returns ``True`` if the value should be
treated as having a value, and ``False`` if the value should be treated as no
value.