Skip to content

Commit ccba141

Browse files
authored
Typo in Chapter 12
1 parent 279defe commit ccba141

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ebook/12_classes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const person = class Person {
5252
}
5353
```
5454

55-
>Remember: class declaration (and expression) and **not hoisted** which means that unless you want to get a **ReferenceError** you need to declare your class before you access it.
55+
>Remember: class declaration (and expression) are **not hoisted** which means that unless you want to get a **ReferenceError** you need to declare your class before you access it.
5656
5757
Let's start creating our first `Class`.
5858

0 commit comments

Comments
 (0)