copy edits from @kgindervogel

This commit is contained in:
perry
2016-05-10 17:49:21 -05:00
parent 3cdf50bf3b
commit df1cee1fc6
5 changed files with 28 additions and 25 deletions
+5 -5
View File
@@ -23,8 +23,8 @@ export class Flashlight {
/**
* Checks if the flash light is available
* @returns {Promise<boolean>} Returns a promise that resolves with a boolean stating if the flash light is available.
* Checks if the flashlight is available
* @returns {Promise<boolean>} Returns a promise that resolves with a boolean stating if the flashlight is available.
*/
@Cordova()
static available(): Promise<boolean> { return; }
@@ -37,7 +37,7 @@ export class Flashlight {
static switchOn(): Promise<boolean> { return; }
/**
* Switches the flash light off
* Switches the flashlight off
* @returns {Promise<boolean>}
*/
@Cordova()
@@ -52,7 +52,7 @@ export class Flashlight {
/**
* Checks if the flash light is turned on.
* Checks if the flashlight is turned on.
* Returns a boolean
*/
@Cordova({
@@ -60,4 +60,4 @@ export class Flashlight {
})
static isSwitchedOn(): boolean { return; }
}
}