Skip to content

Commit ea3150e

Browse files
jloupdefdanielsogl
authored andcommitted
fix(health): fix typos (#2831)
1 parent 3edd62e commit ea3150e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/@ionic-native/plugins/health/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ export class Health extends IonicNativePlugin {
266266
*
267267
* Quirks of isAuthorized()
268268
*
269-
* In iOS, this function will only check authorization status for writeable data.
269+
* In iOS, this function will only check authorization status for writable data.
270270
* Read-only data will always be considered as not authorized. This is an intended behaviour of HealthKit.
271271
*
272272
* @param {Array<string | HealthDataType>} datatypes a list of data types you want to check access of, same as in requestAuthorization

src/@ionic-native/plugins/nfc/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export interface NdefRecord {
2222
export interface NdefTag {
2323
canMakeReadOnly: boolean;
2424
id: number[];
25-
isWriteable: boolean;
25+
isWritable: boolean;
2626
maxSize: number;
2727
ndefMessage: NdefRecord[];
2828
techTypes: string[];
@@ -196,7 +196,7 @@ export class NFC extends IonicNativePlugin {
196196
* @returns {Promise<any>}
197197
*/
198198
@Cordova()
199-
makeReadyOnly(): Promise<any> {
199+
makeReadOnly(): Promise<any> {
200200
return;
201201
}
202202

0 commit comments

Comments
 (0)