diff --git a/src/components/tabs/tab.ts b/src/components/tabs/tab.ts index 36ec2c1665..d6ac9870aa 100644 --- a/src/components/tabs/tab.ts +++ b/src/components/tabs/tab.ts @@ -20,9 +20,9 @@ import { ViewController } from '../../navigation/view-controller'; * The Tab component, written ``, is styled based on the mode and should * be used in conjunction with the [Tabs](../Tabs/) component. * - * Each `ion-tab` is a declarative component for a [NavController](../NavController/). + * Each `ion-tab` is a declarative component for a [NavController](../../../navigation/NavController/). * Basically, each tab is a `NavController`. For more information on using - * navigation controllers take a look at the [NavController API Docs](../../nav/NavController/). + * navigation controllers take a look at the [NavController API Docs](../../../navigation/NavController/). * * See the [Tabs API Docs](../Tabs/) for more details on configuring Tabs. * diff --git a/src/components/tabs/tabs.ts b/src/components/tabs/tabs.ts index 094efbe553..d8d099f02b 100644 --- a/src/components/tabs/tabs.ts +++ b/src/components/tabs/tabs.ts @@ -21,10 +21,10 @@ import { ViewController } from '../../navigation/view-controller'; * Tabs make it easy to navigate between different pages or functional * aspects of an app. The Tabs component, written as ``, is * a container of individual [Tab](../Tab/) components. Each individual `ion-tab` - * is a declarative component for a [NavController](/docs/v2/api/components/modal/ModalController/) + * is a declarative component for a [NavController](../../../navigation/NavController/) * * For more information on using nav controllers like Tab or [Nav](../../nav/Nav/), - * take a look at the [NavController API Docs](/docs/v2/api/components/modal/ModalController/). + * take a look at the [NavController API Docs](../../../navigation/NavController/). * * ### Placement * diff --git a/src/navigation/nav-controller.ts b/src/navigation/nav-controller.ts index 0cd2e2bc21..c58d21cc49 100644 --- a/src/navigation/nav-controller.ts +++ b/src/navigation/nav-controller.ts @@ -22,7 +22,7 @@ import { ViewController } from './view-controller'; * navigation stack causes the new page to be animated in, while [popping](#pop) * the current page will navigate to the previous page in the stack. * - * Unless you are using a directive like [NavPush](docs/v2/api/components/nav/NavPush/), or need a + * Unless you are using a directive like [NavPush](../../components/nav/NavPush/), or need a * specific NavController, most times you will inject and use a reference to the * nearest NavController to manipulate the navigation stack. *