Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Fix typo #116

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fix typo- "teh" should be "the"

Log.Debug(logTag, $"Latitude is {location.Latitude}");
Log.Debug(logTag, $"Longitude is {location.Longitude}");
Log.Debug(logTag, $"Altitude is {location.Altitude}");
Expand Down