docs(route): fix typo (#15673)

This commit is contained in:
Daniel Sogl
2018-09-24 18:44:36 +02:00
committed by Manu MA
parent 786ef65676
commit c2343ef55a
3 changed files with 3 additions and 3 deletions

View File

@ -3612,7 +3612,7 @@ export namespace Components {
*/
'componentProps'?: {[key: string]: any};
/**
* Used internaly by `ion-router` to know when this route did change.
* Used internally by `ion-router` to know when this route did change.
*/
'onIonRouteDataChanged'?: (event: CustomEvent<any>) => void;
/**

View File

@ -20,7 +20,7 @@ Router is a component that can take a component, and render it when the Browser
| Event | Description |
| --------------------- | ------------------------------------------------------------------ |
| `ionRouteDataChanged` | Used internaly by `ion-router` to know when this route did change. |
| `ionRouteDataChanged` | Used internally by `ion-router` to know when this route did change. |
----------------------------------------------

View File

@ -29,7 +29,7 @@ export class Route implements ComponentInterface {
@Prop() componentProps?: {[key: string]: any};
/**
* Used internaly by `ion-router` to know when this route did change.
* Used internally by `ion-router` to know when this route did change.
*/
@Event() ionRouteDataChanged!: EventEmitter<any>;