Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix spellings in comments of LocationPermission #1349

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
6 changes: 5 additions & 1 deletion geolocator_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.1.2

- Fix spellings in comments of LocationPermission

## 4.1.1

- Updates dependencies to latest versions to prevent conflicts with other packages.
Expand All @@ -24,7 +28,7 @@

## 4.0.4

- Fixes a bug where listening to the position stream immediately after an error, results in listening to a dead stream.
- Fixes a bug where listening to the position stream immediately after an error, results in listening to a dead stream.

## 4.0.3

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ enum LocationPermission {
/// to request permission using the `Geolocator.requestPermission()` method.
denied,

/// Permission to access the device's location is permenantly denied. When
/// requestiong permissions the permission dialog will not been shown until
/// Permission to access the device's location is permanently denied. When
/// requesting permissions the permission dialog will not been shown until
/// the user updates the permission in the App settings.
deniedForever,

Expand Down
4 changes: 2 additions & 2 deletions geolocator_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ description: A common platform interface for the geolocator plugin.
repository: https://github.com/baseflow/flutter-geolocator/tree/main/geolocator_platform_interface
# NOTE: We strongly prefer non-breaking changes, even at the expense of a
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
version: 4.1.1
version: 4.1.2

dependencies:
flutter:
sdk: flutter

plugin_platform_interface: ^2.1.6
vector_math: ^2.1.4
meta: ^1.9.1
Expand Down
Loading