Skip to content

Commit

Permalink
Fix "example" typo in the documentation.
Browse files Browse the repository at this point in the history
Signed-off-by: Raman But-Husaim <raman_buthusaim@yahoo.com>
  • Loading branch information
Raman But-Husaim authored and rxaviers committed Feb 21, 2016
1 parent ac072c8 commit 1ba33f5
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion doc/api/core/constructor.md
Expand Up @@ -2,7 +2,7 @@

Create a new instance of Cldr.

| Parameter | Type | Exampe |
| Parameter | Type | Example |
| --- | --- | --- |
| *locale* | String | `"en"`, `"pt-BR"` |

Expand Down
2 changes: 1 addition & 1 deletion doc/api/core/get.md
Expand Up @@ -2,7 +2,7 @@

Get the item data given its path, or `undefined` if missing.

| Parameter | Type | Exampe |
| Parameter | Type | Example |
| --- | --- | --- |
| *path* | String or<br>Array | `"/cldr/main/{languageId}/numbers/symbols-numberSystem-latn/decimal"`<br>`[ "cldr", "main", "{languageId}", "numbers", "symbols-numberSystem-latn", "decimal" ]` |

Expand Down
2 changes: 1 addition & 1 deletion doc/api/core/main.md
Expand Up @@ -2,7 +2,7 @@

It's an alias for `.get([ "main/{languageId}", ... ])`.

| Parameter | Type | Exampe |
| Parameter | Type | Example |
| --- | --- | --- |
| *path* | String or<br>Array | See `cldr.get()` for more information |

Expand Down
2 changes: 1 addition & 1 deletion doc/api/event/global_off.md
Expand Up @@ -2,7 +2,7 @@

Removes a listener function from the specified event globally (for all instances).

| Parameter | Type | Exampe |
| Parameter | Type | Example |
| --- | --- | --- |
| *event* | String | `"get"` |
| *listener* | Function | |
Expand Down
2 changes: 1 addition & 1 deletion doc/api/event/global_on.md
Expand Up @@ -2,7 +2,7 @@

Add a listener function to the specified event globally (for all instances).

| Parameter | Type | Exampe |
| Parameter | Type | Example |
| --- | --- | --- |
| *event* | String | `"get"` |
| *listener* | Function | |
Expand Down
2 changes: 1 addition & 1 deletion doc/api/event/global_once.md
Expand Up @@ -2,7 +2,7 @@

Add a listener function to the specified event globally (for all instances). It will be automatically removed after it's first execution.

| Parameter | Type | Exampe |
| Parameter | Type | Example |
| --- | --- | --- |
| *event* | String | `"get"` |
| *listener* | Function | |
Expand Down
2 changes: 1 addition & 1 deletion doc/api/event/off.md
Expand Up @@ -2,7 +2,7 @@

Removes a listener function from the specified event for this instance.

| Parameter | Type | Exampe |
| Parameter | Type | Example |
| --- | --- | --- |
| *event* | String | `"get"` |
| *listener* | Function | |
Expand Down
2 changes: 1 addition & 1 deletion doc/api/event/on.md
Expand Up @@ -2,7 +2,7 @@

Add a listener function to the specified event for this instance.

| Parameter | Type | Exampe |
| Parameter | Type | Example |
| --- | --- | --- |
| *event* | String | `"get"` |
| *listener* | Function | |
Expand Down
2 changes: 1 addition & 1 deletion doc/api/event/once.md
Expand Up @@ -2,7 +2,7 @@

Add a listener function to the specified event for this instance. It will be automatically removed after it's first execution.

| Parameter | Type | Exampe |
| Parameter | Type | Example |
| --- | --- | --- |
| *event* | String | `"get"` |
| *listener* | Function | |
Expand Down
2 changes: 1 addition & 1 deletion doc/api/supplemental.md
Expand Up @@ -2,7 +2,7 @@

It's an alias for `.get([ "supplemental", ... ])`.

| Parameter | Type | Exampe |
| Parameter | Type | Example |
| --- | --- | --- |
| *path* | String or<br>Array | See `cldr.get()` for more information |

Expand Down
2 changes: 1 addition & 1 deletion doc/api/unresolved/get.md
Expand Up @@ -2,7 +2,7 @@

Overload (extend) `.get()` to get the item data or lookup by following [locale inheritance](http://www.unicode.org/reports/tr35/#Locale_Inheritance), set a local resolved cache if it's found (for subsequent faster access), or return `undefined`.

| Parameter | Type | Exampe |
| Parameter | Type | Example |
| --- | --- | --- |
| *path* | String or<br>Array | See `cldr.get()` above for more information |

Expand Down

0 comments on commit 1ba33f5

Please sign in to comment.