From 13d9de4a494769fa381574a3b66e7562fab84dbf Mon Sep 17 00:00:00 2001 From: Aaron Christianson Date: Thu, 5 Nov 2020 22:53:44 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Simplify=20intro=20to=20Python?= =?UTF-8?q?=20Types,=20all=20currently=20supported=20Python=20versions=20i?= =?UTF-8?q?nclude=20type=20hints=20=F0=9F=8E=89=20(#2085)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/en/docs/python-types.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/docs/python-types.md b/docs/en/docs/python-types.md index d938de666..9bbf955b9 100644 --- a/docs/en/docs/python-types.md +++ b/docs/en/docs/python-types.md @@ -1,8 +1,8 @@ # Python Types Intro -**Python 3.6+** has support for optional "type hints". +Python has support for optional "type hints". -These **"type hints"** are a new syntax (since Python 3.6+) that allow declaring the type of a variable. +These **"type hints"** are a special syntax that allow declaring the type of a variable. By declaring types for your variables, editors and tools can give you better support.