From 86b158008da23dd25be4dd173059b3bfa72e67da Mon Sep 17 00:00:00 2001 From: mif Date: Wed, 26 Oct 2016 11:58:05 +0300 Subject: [PATCH] docs(popover): update links to popover closes #8912 --- src/components/popover/popover.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/popover/popover.ts b/src/components/popover/popover.ts index 8903ef7c35..a9f0c0ebb1 100644 --- a/src/components/popover/popover.ts +++ b/src/components/popover/popover.ts @@ -62,7 +62,7 @@ export class Popover extends ViewController { * below for all available options. * * ### Presenting - * To present a popover, call the `present` method on a [PopoverController](../../nav/PopoverConroller) instance. + * To present a popover, call the `present` method on a PopoverController instance. * In order to position the popover relative to the element clicked, a click event * needs to be passed into the options of the the `present method. If the event * is not passed, the popover will be positioned in the center of the current @@ -71,7 +71,7 @@ export class Popover extends ViewController { * ### Dismissing * To dismiss the popover after creation, call the `dismiss()` method on the * `Popover` instance. The popover can also be dismissed from within the popover's - * view by calling the `dismiss()` method on the [ViewController](../../nav/ViewController). + * view by calling the `dismiss()` method on the [ViewController](../../navigation/ViewController). * The `dismiss()` call accepts an optional parameter that will be passed to the callback described * as follows. The `onDidDismiss()` function can be called to set up a callback action that will * be performed after the popover is dismissed, receiving the parameter passed to `dismiss()`.