Skip to content

Commit f5b3e30

Browse files
committed
whitespace
1 parent b3f522a commit f5b3e30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assignments/closure.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const counterMaker = () => {
1111
// 1- Declare a `count` variable with an value of 0. We will be mutating it, so declare it using `let`!
1212
// 2- Declare a function `counter`. It should increment and return `count`.
1313
// NOTE: This `counter` function, being nested inside `counterMaker`,
14-
// "closes over" the`count` variable. It can "see" it in the parent scope!
14+
// "closes over" the `count` variable. It can "see" it in the parent scope!
1515
// 3- Return the `counter` function.
1616
};
1717
// Example usage: const myCounter = counterMaker();

0 commit comments

Comments
 (0)