Skip to content

Commit 765d474

Browse files
authored
Fix typo
The correct word to use is "parentheses" since there is more than one parenthesis surrounding the function expression. "Parentheses" is the plural form of "parenthesis."
1 parent 722fbb8 commit 765d474

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

problems/scope/problem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ IIFE, Immediately Invoked Function Expression, is a common pattern for creating
2929

3030
Example:
3131
```js
32-
(function () { // the function expression is surrounded by parenthesis
32+
(function () { // the function expression is surrounded by parentheses
3333
// variables defined here
3434
// can't be accessed outside
3535
})() // the function is immediately invoked

0 commit comments

Comments
 (0)