diff --git a/doc/api/core/constructor.md b/doc/api/core/constructor.md index a6c3b86..b29cc8d 100644 --- a/doc/api/core/constructor.md +++ b/doc/api/core/constructor.md @@ -2,7 +2,7 @@ Create a new instance of Cldr. -| Parameter | Type | Exampe | +| Parameter | Type | Example | | --- | --- | --- | | *locale* | String | `"en"`, `"pt-BR"` | diff --git a/doc/api/core/get.md b/doc/api/core/get.md index eaf6f88..0a96f4f 100644 --- a/doc/api/core/get.md +++ b/doc/api/core/get.md @@ -2,7 +2,7 @@ Get the item data given its path, or `undefined` if missing. -| Parameter | Type | Exampe | +| Parameter | Type | Example | | --- | --- | --- | | *path* | String or
Array | `"/cldr/main/{languageId}/numbers/symbols-numberSystem-latn/decimal"`
`[ "cldr", "main", "{languageId}", "numbers", "symbols-numberSystem-latn", "decimal" ]` | diff --git a/doc/api/core/main.md b/doc/api/core/main.md index ce7e69b..856279a 100644 --- a/doc/api/core/main.md +++ b/doc/api/core/main.md @@ -2,7 +2,7 @@ It's an alias for `.get([ "main/{languageId}", ... ])`. -| Parameter | Type | Exampe | +| Parameter | Type | Example | | --- | --- | --- | | *path* | String or
Array | See `cldr.get()` for more information | diff --git a/doc/api/event/global_off.md b/doc/api/event/global_off.md index 8c3072c..2a2db5f 100644 --- a/doc/api/event/global_off.md +++ b/doc/api/event/global_off.md @@ -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 | | diff --git a/doc/api/event/global_on.md b/doc/api/event/global_on.md index 5e7decc..96f63a3 100644 --- a/doc/api/event/global_on.md +++ b/doc/api/event/global_on.md @@ -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 | | diff --git a/doc/api/event/global_once.md b/doc/api/event/global_once.md index 54c4956..8aec636 100644 --- a/doc/api/event/global_once.md +++ b/doc/api/event/global_once.md @@ -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 | | diff --git a/doc/api/event/off.md b/doc/api/event/off.md index bf74ded..e0191a1 100644 --- a/doc/api/event/off.md +++ b/doc/api/event/off.md @@ -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 | | diff --git a/doc/api/event/on.md b/doc/api/event/on.md index d9915b1..f7cd83f 100644 --- a/doc/api/event/on.md +++ b/doc/api/event/on.md @@ -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 | | diff --git a/doc/api/event/once.md b/doc/api/event/once.md index 39e8979..5011cce 100644 --- a/doc/api/event/once.md +++ b/doc/api/event/once.md @@ -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 | | diff --git a/doc/api/supplemental.md b/doc/api/supplemental.md index ceb2231..b083226 100644 --- a/doc/api/supplemental.md +++ b/doc/api/supplemental.md @@ -2,7 +2,7 @@ It's an alias for `.get([ "supplemental", ... ])`. -| Parameter | Type | Exampe | +| Parameter | Type | Example | | --- | --- | --- | | *path* | String or
Array | See `cldr.get()` for more information | diff --git a/doc/api/unresolved/get.md b/doc/api/unresolved/get.md index bc35931..f37dd06 100644 --- a/doc/api/unresolved/get.md +++ b/doc/api/unresolved/get.md @@ -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
Array | See `cldr.get()` above for more information |