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 ::