Fix a syntax typo

Swap `` for "
This commit is contained in:
Brett Cannon 2018-07-20 17:06:08 -07:00 committed by GitHub
parent b0688e455b
commit 60dac1542e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ patterns involving null references.
This PEP proposes three ``None``-aware operators for Python, based on the
definitions and other language's implementations of those above. Specifically:
* The "``None`` coalescing`` binary operator ``??`` returns the left hand side
* The "``None`` coalescing" binary operator ``??`` returns the left hand side
if it evaluates to a value that is not ``None``, or else it evaluates and
returns the right hand side. A coalescing ``??=`` augmented assignment
operator is included.