docs(platform): removes extra word (typo)

This commit is contained in:
Musa Haidari
2017-04-05 22:57:48 +04:30
committed by Manu MA
parent 94a33a74d2
commit 0a97cf2d5f

View File

@ -427,7 +427,7 @@ export class Platform {
* if this registered action has the highest priority. * if this registered action has the highest priority.
* @param {number} priority Set the priority for this action. Only the highest priority will execute. Defaults to `0`. * @param {number} priority Set the priority for this action. Only the highest priority will execute. Defaults to `0`.
* @returns {Function} A function that, when called, will unregister * @returns {Function} A function that, when called, will unregister
* the its back button action. * the back button action.
*/ */
registerBackButtonAction(fn: Function, priority: number = 0): Function { registerBackButtonAction(fn: Function, priority: number = 0): Function {
const action: BackButtonAction = {fn, priority}; const action: BackButtonAction = {fn, priority};