Skip to content

Commit

Permalink
fixup: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MylesBorins committed Nov 27, 2019
1 parent 24cd1c5 commit 5e50f4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/guides/maintaining-icu.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Also running
<!-- eslint-disable strict -->

```js
new Intl.DateTimeFormat('es', {month: 'long'}).format(new Date(9E8));
new Intl.DateTimeFormat('es', { month: 'long' }).format(new Date(9E8));
```

…Should return `enero` not `January`.
Expand Down Expand Up @@ -120,7 +120,7 @@ make

```js
process.versions.icu;
new Intl.DateTimeFormat('es', {month: 'long'}).format(new Date(9E8));
new Intl.DateTimeFormat('es', { month: 'long' }).format(new Date(9E8));
```

(This should print your updated ICU version number, and also `January` again.)
Expand Down

0 comments on commit 5e50f4a

Please sign in to comment.