From 5a0ab0c2b71441f839914df6e7b996bfc4850cab Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 9 Sep 2020 01:00:45 +0200 Subject: [PATCH] PEP 604: Fix minor typo (#1594) equivalentl -> equivalent --- pep-0604.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0604.rst b/pep-0604.rst index 5c4e2e735..0796e94da 100644 --- a/pep-0604.rst +++ b/pep-0604.rst @@ -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 ::