Skip to content

Commit

Permalink
Adjust for linting
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyGu committed Jul 5, 2017
1 parent 36e3695 commit 10beb9c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/api/intl.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ const english = new Intl.DateTimeFormat('en', { month: 'long' });
const spanish = new Intl.DateTimeFormat('es', { month: 'long' });

console.log(english.format(january));
// Prints "January"
// Prints "January"
console.log(spanish.format(january));
// Prints "M01" on small-icu
// Should print "enero"
// Prints "M01" on small-icu
// Should print "enero"
```

This mode provides a good balance between features and binary size, and it is
Expand Down

0 comments on commit 10beb9c

Please sign in to comment.