Skip to content

Commit

Permalink
Fixed two typos in cookbook/en.md (#294)
Browse files Browse the repository at this point in the history
  • Loading branch information
ioannad authored Mar 17, 2022
1 parent f89d8e0 commit a4bff17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cookbook/en.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ If you are unsure what this is all about, make sure you check out the [tutorial]

---

## Convert from Arrays/Objects to Tuples/Objects with spread
## Convert from Arrays/Objects to Tuples/Records with spread

```js
const coordinate = [0,3];
Expand Down Expand Up @@ -212,7 +212,7 @@ console.log(#[...base, 3] === #[1, 2, 3]);
```

```js
console.log(#[3, 2, 1].toReversed() === #[3, 2, 1]);
console.log(#[3, 2, 1].toReversed() === #[1, 2, 3]);
```

```js
Expand Down

0 comments on commit a4bff17

Please sign in to comment.