Skip to content

Commit 06654a5

Browse files
committed
Add missing ); in README.md examples. Fixes #61
1 parent 93dfa12 commit 06654a5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ for number formatting ( Intl.NumberFormat ) and date and time formatting ( Intl.
55
Collation ( Intl.Collator ) is not currently supported.
66

77
## Status
8-
No official release yet. Relatively stable development release at 0.2.1-dev.
8+
No official release yet. Relatively stable development release at 0.2.2-dev.
99

1010
## Licensing
1111

@@ -57,7 +57,7 @@ Then you can load `Intl` through the `ecma402/IntlShim` module and use it:
5757
config: {
5858
"ecma402/locales": /^(en|de|fr)$/
5959
}
60-
}
60+
});
6161
</script>
6262
<script>
6363
require(["ecma402/IntlShim"], function(Intl) {
@@ -82,7 +82,7 @@ the `intl-api` flag to false in the RequireJS config as follows:
8282
"intl-api": false
8383
}
8484
}
85-
}
85+
});
8686
</script>
8787
```
8888

@@ -99,7 +99,7 @@ native support in the browser, you can load the `ecma402/Intl` module directly,
9999
config: {
100100
"ecma402/locales": /^(en|de|fr)$/
101101
}
102-
}
102+
});
103103
</script>
104104
<script>
105105
require(["ecma402/Intl"], function(Intl) {

0 commit comments

Comments
 (0)