From 36a07db3596cd7c3058e6dc35bc592c01a95f4f5 Mon Sep 17 00:00:00 2001 From: joldie <37202526+joldie@users.noreply.github.com> Date: Wed, 18 Jul 2018 02:52:03 +0000 Subject: [PATCH] Fixed typos in introductory text --- .../basic-algorithm-scripting/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/learn/src/introductions/javascript-algorithms-and-data-structures/basic-algorithm-scripting/index.md b/packages/learn/src/introductions/javascript-algorithms-and-data-structures/basic-algorithm-scripting/index.md index 3dca7988cb..96c4b69101 100644 --- a/packages/learn/src/introductions/javascript-algorithms-and-data-structures/basic-algorithm-scripting/index.md +++ b/packages/learn/src/introductions/javascript-algorithms-and-data-structures/basic-algorithm-scripting/index.md @@ -7,7 +7,7 @@ superBlock: JavaScript Algorithms and Data Structures A computer algorithm is a sequence of steps that is followed to achieve a particular outcome. To write an algorithm, you must first understand a problem, and then solve it with coding. -To make solving problems eaiser, it can be helpful to break them down into many chuncks. Then, each chunk can be solved one by one. For example, if you are building a calculator, don't try to solve the problem as a whole. First, consider how to get inputs. Then, determine each arithematic operation one by one. Finally, display the results. +To make solving problems eaiser, it can be helpful to break them down into many chunks. Then, each chunk can be solved one by one. For example, if you are building a calculator, don't try to solve the problem as a whole. First, consider how to get inputs. Then, determine each arithmetic operation one by one. Finally, display the results. In this section we will learn to solve basic algorithm problems using JavaScript. This will help you improve your problem solving skills and prepare you to later solve more complex problems.