From b862639ce9eebcd113d0d16806c3f63a036bdd34 Mon Sep 17 00:00:00 2001
From: Atiab Bin Zakaria <61742543+atiabbz@users.noreply.github.com>
Date: Thu, 18 Aug 2022 23:59:50 +0800
Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=20Fix=20typo=20in=20`docs/en/docs/pyt?=
=?UTF-8?q?hon-types.md`=20(#5007)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
docs/en/docs/python-types.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/en/docs/python-types.md b/docs/en/docs/python-types.md
index 963fcaf1c..f170bb1ef 100644
--- a/docs/en/docs/python-types.md
+++ b/docs/en/docs/python-types.md
@@ -267,7 +267,7 @@ You can declare that a variable can be any of **several types**, for example, an
In Python 3.6 and above (including Python 3.10) you can use the `Union` type from `typing` and put inside the square brackets the possible types to accept.
-In Python 3.10 there's also an **alternative syntax** were you can put the possible types separated by a vertical bar (`|`).
+In Python 3.10 there's also an **alternative syntax** where you can put the possible types separated by a vertical bar (`|`).
=== "Python 3.6 and above"