Skip to content

Commit f9e41ac

Browse files
Readme update
Consistent wording.
1 parent ea5781f commit f9e41ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Heavily inspired by them as well:
88

99
## Table of Contents
1010

11-
1. [Types](#types)
11+
1. [Types](#types)ho
1212
1. [Objects](#objects)
1313
1. [Arrays](#arrays)
1414
1. [Strings](#strings)
@@ -631,7 +631,7 @@ Heavily inspired by them as well:
631631
}
632632
```
633633
634-
- Anonymous function expressions hoist their variable name, but not the function assignment.
634+
- Anonymous function expressions hoist their variable declaration, but not the function assignment.
635635
636636
```javascript
637637
function example() {
@@ -645,7 +645,7 @@ Heavily inspired by them as well:
645645
}
646646
```
647647
648-
- Named function expressions hoist the variable name, not the function name or the function body.
648+
- Named function expressions hoist the variable declaration, but neither the function declaration nor the function body.
649649
650650
```javascript
651651
function example() {

0 commit comments

Comments
 (0)