diff --git a/BackgroundLocationDemo/location.Android/Services/LocationService.cs b/BackgroundLocationDemo/location.Android/Services/LocationService.cs index 23dc89dba..f4e5ecb0d 100644 --- a/BackgroundLocationDemo/location.Android/Services/LocationService.cs +++ b/BackgroundLocationDemo/location.Android/Services/LocationService.cs @@ -29,7 +29,7 @@ public void OnLocationChanged(Android.Locations.Location location) LocationChanged(this, new LocationChangedEventArgs(location)); // This should be updating every time we request new location updates - // both when teh app is in the background, and in the foreground + // both when the app is in the background, and in the foreground Log.Debug(logTag, $"Latitude is {location.Latitude}"); Log.Debug(logTag, $"Longitude is {location.Longitude}"); Log.Debug(logTag, $"Altitude is {location.Altitude}");