From 968736fa512a7004893f05eefd70d20826f5916a Mon Sep 17 00:00:00 2001 From: Brad Clements Date: Sat, 18 Jul 2020 11:12:30 -0400 Subject: [PATCH] minor typo fix --- doc/source/control.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/control.rst b/doc/source/control.rst index fe58556e..0f540016 100644 --- a/doc/source/control.rst +++ b/doc/source/control.rst @@ -130,7 +130,7 @@ The higher order function ``map`` gives us a name to call a particular control pattern. Regardless of whether or not you use a for loop, a list comprehension, or ``map`` itself, it is useful to recognize the operation and to give it a name. Naming control patterns lets us tackle -complex problems a larger scale without burdening our mind with rote details. +complex problems at larger scale without burdening our mind with rote details. It is just as important as bundling data into data structures or building complex functions out of simple ones.