Skip to content

Commit

Permalink
Add missing ); in README.md examples. Fixes #61
Browse files Browse the repository at this point in the history
  • Loading branch information
JCEmmons committed Jul 31, 2014
1 parent 93dfa12 commit 06654a5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ for number formatting ( Intl.NumberFormat ) and date and time formatting ( Intl.
Collation ( Intl.Collator ) is not currently supported.

## Status
No official release yet. Relatively stable development release at 0.2.1-dev.
No official release yet. Relatively stable development release at 0.2.2-dev.

## Licensing

Expand Down Expand Up @@ -57,7 +57,7 @@ Then you can load `Intl` through the `ecma402/IntlShim` module and use it:
config: {
"ecma402/locales": /^(en|de|fr)$/
}
}
});
</script>
<script>
require(["ecma402/IntlShim"], function(Intl) {
Expand All @@ -82,7 +82,7 @@ the `intl-api` flag to false in the RequireJS config as follows:
"intl-api": false
}
}
}
});
</script>
```

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

0 comments on commit 06654a5

Please sign in to comment.