Skip to content

Commit

Permalink
fix(health): fix typos (#2831)
Browse files Browse the repository at this point in the history
  • Loading branch information
jloupdef authored and danielsogl committed Jan 4, 2019
1 parent 3edd62e commit ea3150e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/@ionic-native/plugins/health/index.ts
Expand Up @@ -266,7 +266,7 @@ export class Health extends IonicNativePlugin {
*
* Quirks of isAuthorized()
*
* In iOS, this function will only check authorization status for writeable data.
* In iOS, this function will only check authorization status for writable data.
* Read-only data will always be considered as not authorized. This is an intended behaviour of HealthKit.
*
* @param {Array<string | HealthDataType>} datatypes a list of data types you want to check access of, same as in requestAuthorization
Expand Down
4 changes: 2 additions & 2 deletions src/@ionic-native/plugins/nfc/index.ts
Expand Up @@ -22,7 +22,7 @@ export interface NdefRecord {
export interface NdefTag {
canMakeReadOnly: boolean;
id: number[];
isWriteable: boolean;
isWritable: boolean;
maxSize: number;
ndefMessage: NdefRecord[];
techTypes: string[];
Expand Down Expand Up @@ -196,7 +196,7 @@ export class NFC extends IonicNativePlugin {
* @returns {Promise<any>}
*/
@Cordova()
makeReadyOnly(): Promise<any> {
makeReadOnly(): Promise<any> {
return;
}

Expand Down

0 comments on commit ea3150e

Please sign in to comment.