From 77245e3ed5c611804e220ade358ccf43367fe045 Mon Sep 17 00:00:00 2001 From: Connor Mendenhall Date: Thu, 14 Sep 2017 19:57:06 -0400 Subject: [PATCH] Tiny typo fix --- python/lesson2/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lesson2/tutorial.md b/python/lesson2/tutorial.md index 59a06f93..a37d6e52 100644 --- a/python/lesson2/tutorial.md +++ b/python/lesson2/tutorial.md @@ -80,7 +80,7 @@ multiple *types* of objects that you work with in Python, and they don't all act the same way. The three types you've learnt so far are *integers* (`int`), *floats* (`float`), and *strings* (`str`). Integers are whole numbers, floats are numbers with a decimal point, and strings are any number of characters -surrounded be either "" or ''. This is important to know because every Python +surrounded by either "" or ''. This is important to know because every Python programmer has tried to do this at least once in their career: "7" + 8