Skip to content

Commit 460f1bf

Browse files
fix typo
1 parent 6065187 commit 460f1bf

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

ebook/01_var_let_const.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Chapter 1: Var vs Let vs Const & the temporal dead zone
1+
# Chapter 1: `Var` vs `Let` vs `Const` & the temporal dead zone
22

33
With the introduction of `let` and `const` in **ES6** we can know better define our variable depending on our needs. Let's have a look at the major differences between them.
44

ebook/09_spread_operator_and_rest_parameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,4 +147,4 @@ console.log(...losers);
147147
// Mark Luke
148148
```
149149

150-
We stored the first two values inside the const first and second and whatever was left we put it inside losers using the rest parameter.
150+
We stored the first two values inside the `const` first and second and whatever was left we put it inside losers using the rest parameter.

ebook/15_proxies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ When setting a new value we step in again and log a short message before setting
4949

5050
Proxies can be very useful for example if your object is a phone number.
5151

52-
You can take the value given by the user and format it to match the standand formatting of your country.
52+
You can take the value given by the user and format it to match the standard formatting of your country.

ebook/16_sets_weaksets_maps_weakmaps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Chapter 16: Sets, WeakSets, Maps and WeakMaps
1+
# Chapter 16: `Sets`, `WeakSets`, `Maps` and `WeakMaps`
22

33
## What is a `Set`?
44

0 commit comments

Comments
 (0)