From 3866d5acc0eece5f657a5960905b7e497dfefad5 Mon Sep 17 00:00:00 2001 From: Wilco Breedt Date: Thu, 3 Jan 2019 12:08:32 +0200 Subject: [PATCH] Fix grammar error Fixed the grammar error indicating that the option 'always' only works on iOS --- src/location-monitor.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/location-monitor.d.ts b/src/location-monitor.d.ts index 278dc82..831ef73 100644 --- a/src/location-monitor.d.ts +++ b/src/location-monitor.d.ts @@ -73,7 +73,7 @@ export function watchLocation(successCallback: successCallbackType, errorCallbac export function clearWatch(watchId: number): void; /** - * Ask for permissions to use location services. The option `always` is application for iOS only. Read more: https://developer.apple.com/documentation/corelocation/cllocationmanager/1620551-requestalwaysauthorization. + * Ask for permissions to use location services. The option 'always' is applicable to iOS only. Read more: https://developer.apple.com/documentation/corelocation/cllocationmanager/1620551-requestalwaysauthorization. * @param always iOS only. https://developer.apple.com/documentation/corelocation/cllocationmanager/1620551-requestalwaysauthorization */ export function enableLocationRequest(always?: boolean): Promise;