From 39d380805138a0935f11ec8640325757cc98fda8 Mon Sep 17 00:00:00 2001 From: InSync Date: Thu, 15 Aug 2024 23:31:24 +0700 Subject: [PATCH] Rewording (again) per review --- docs/spec/special-types.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/spec/special-types.rst b/docs/spec/special-types.rst index 49eb5b4a..ccf3a929 100644 --- a/docs/spec/special-types.rst +++ b/docs/spec/special-types.rst @@ -176,7 +176,7 @@ Note that it is legal to use a union of classes as the parameter for ... ``type[]`` distributes over unions: -``type[A | B]`` is consistent with ``type[A] | type[B]``. +``type[A | B]`` is equivalent to ``type[A] | type[B]``. However, the actual argument passed in at runtime must still be a concrete class object, e.g. in the above example::