PEP 622: fix typo (#1460)

This commit is contained in:
Swastik Baranwal 2020-06-24 10:45:47 +05:30 committed by GitHub
parent 8fd28e1e94
commit 5d2dc3fb23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ Match semantics
The proposed large scale semantics for choosing the match is to choose the first The proposed large scale semantics for choosing the match is to choose the first
matching pattern and execute the corresponding suite. The remaining patterns matching pattern and execute the corresponding suite. The remaining patterns
are not tried. If there are no matching pattens, the statement 'falls are not tried. If there are no matching patterns, the statement 'falls
through', and execution continues at the following statement. through', and execution continues at the following statement.
Essentially this is equivalent to a chain of ``if ... elif ... else`` Essentially this is equivalent to a chain of ``if ... elif ... else``