changed wording

This commit is contained in:
Nicholas Zuber 2016-12-23 03:29:22 -05:00
parent b8d5028816
commit e8ce4d0c17

View file

@ -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}`)