PEP 604: Fix minor typo (#1594)

equivalentl -> equivalent
This commit is contained in:
Florian Bruhin 2020-09-09 01:00:45 +02:00 committed by GitHub
parent b085b2ddfa
commit 5a0ab0c2b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ The order of the items in the Union should not matter for equality.
(int | str | float) == typing.Union[str, float, int]
Optional values should be equivalentl to the new union syntax
Optional values should be equivalent to the new union syntax
::