summaryrefslogtreecommitdiff
path: root/tools/icu
diff options
context:
space:
mode:
Diffstat (limited to 'tools/icu')
-rw-r--r--tools/icu/README.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/icu/README.md b/tools/icu/README.md
index ed540c6725..c70fa4ee42 100644
--- a/tools/icu/README.md
+++ b/tools/icu/README.md
@@ -25,8 +25,10 @@ make test-ci
```
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 `January` not `enero`.
@@ -49,9 +51,11 @@ make
```
- Test this newly default-generated Node.js
+
+<!-- eslint-disable strict -->
```js
process.versions.icu;
-new Intl.DateTimeFormat('es',{month:'long'}).format(new Date(9E8));
+new Intl.DateTimeFormat('es', {month: 'long'}).format(new Date(9E8));
```
(should return your updated ICU version number, and also `January` again.)