From e8ce4d0c173e869c21968b1d5dad1d97b73d9da1 Mon Sep 17 00:00:00 2001 From: Nicholas Zuber Date: Fri, 23 Dec 2016 03:29:22 -0500 Subject: [PATCH] changed wording --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 421feef..5134cd8 100644 --- a/readme.md +++ b/readme.md @@ -178,7 +178,7 @@ floorAndToString(121.212121) // '121' ## Continuation -At any given point in a program, the collection of instructions that still need to be processed in order for the program to complete is known as a continuation. +At any given point in a program, the part of the code that's yet to be executed is known as a continuation. ```js const printAsString = (num) => console.log(`Given ${num}`)