mirror of
https://github.com/rjNemo/functional-programming-jargon
synced 2026-06-11 21:16:43 +00:00
changed wording
This commit is contained in:
parent
b8d5028816
commit
e8ce4d0c17
1 changed files with 1 additions and 1 deletions
|
|
@ -178,7 +178,7 @@ floorAndToString(121.212121) // '121'
|
||||||
|
|
||||||
## Continuation
|
## 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
|
```js
|
||||||
const printAsString = (num) => console.log(`Given ${num}`)
|
const printAsString = (num) => console.log(`Given ${num}`)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue