From dd265b4269ba48d1225fea193803c6f9c0bdd52f Mon Sep 17 00:00:00 2001
From: Hayden MacDonald <hayden.macdonald.8778@gmail.com>
Date: Thu, 14 Jan 2021 20:08:47 +0000
Subject: [PATCH] Typo in Control Flow Statements

In the last sentence in the paragraph before the For Loops header: "optinally" corrected to "optionally".
---
 07-Control-Flow-Statements.ipynb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/07-Control-Flow-Statements.ipynb b/07-Control-Flow-Statements.ipynb
index 50b1004..b39a176 100644
--- a/07-Control-Flow-Statements.ipynb
+++ b/07-Control-Flow-Statements.ipynb
@@ -81,7 +81,7 @@
     "Note especially the use of colons (``:``) and whitespace to denote separate blocks of code.\n",
     "\n",
     "Python adopts the ``if`` and ``else`` often used in other languages; its more unique keyword is ``elif``, a contraction of \"else if\".\n",
-    "In these conditional clauses, ``elif`` and ``else`` blocks are optional; additionally, you can optinally include as few or as many ``elif`` statements as you would like."
+    "In these conditional clauses, ``elif`` and ``else`` blocks are optional; additionally, you can optionally include as few or as many ``elif`` statements as you would like."
    ]
   },
   {