docs(menu-controler): fix typo (#15669)

This commit is contained in:
Daniel Sogl
2018-09-24 18:45:26 +02:00
committed by Manu MA
parent 7d50305b7f
commit 7f5c35790c
2 changed files with 3 additions and 3 deletions

View File

@ -314,7 +314,7 @@ Content is now a drop-in replacement for `ion-scroll`, that means `ion-content`
### resize() was removed
In Ionic 4, `ion-content` layout is based in flex, that means their size will automatically adjust without requiring to call resize() programatically.
In Ionic 4, `ion-content` layout is based in flex, that means their size will automatically adjust without requiring to call resize() programmatically.
### Attributes Renamed

View File

@ -6,7 +6,7 @@ const CTRL = 'ion-menu-controller';
export class MenuController {
/**
* Programatically open the Menu.
* Programmatically open the Menu.
* @param [menuId] Optionally get the menu by its id, or side.
* @return returns a promise when the menu is fully opened
*/
@ -16,7 +16,7 @@ export class MenuController {
/**
* Programatically close the Menu. If no `menuId` is given as the first
* Programmatically close the Menu. If no `menuId` is given as the first
* argument then it'll close any menu which is open. If a `menuId`
* is given then it'll close that exact menu.
* @param [menuId] Optionally get the menu by its id, or side.