diff --git a/README.md b/README.md
index f9652fe..7ffc411 100644
--- a/README.md
+++ b/README.md
@@ -173,7 +173,7 @@ Not available on web.
| **`timeout`** | number | The maximum wait time in milliseconds for location updates. | 10000 | 1.0.0 |
| **`maximumAge`** | number | The maximum age in milliseconds of a possible cached position that is acceptable to return | 0 | 1.0.0 |
| **`minimumUpdateInterval`** | number | The minimum update interval for `watchPosition`. Not to be confused with `interval`. If location updates are available faster than this interval then an update will only occur if the minimum update interval has expired since the last location update. This parameter is only available for Android. It has no effect on iOS or Web platforms. | 5000 | 6.1.0 |
-| **`interval`** | number | Desired interval in milliseconds to receive location updates in `watchPosition`. For very low values of `interval` (a couple seconds or less), the platform may not guarantee timely location updates - they may take longer than specified. The platform may also be able to provide location updates faster than `interval`. You may use `minimumUpdateInterval` to control that behavior. For backwards compatiblity with version 7.1.x, if no value is passed, the default value of this parameter is that of `timeout`. This parameter is only available for Android. It has no effect on iOS or Web platforms. | `timeout` | 8.0.0 |
+| **`interval`** | number | Desired interval in milliseconds to receive location updates in `watchPosition`. For very low values of `interval` (a couple seconds or less), the platform may not guarantee timely location updates - they may take longer than specified. The platform may also be able to provide location updates faster than `interval`. You may use `minimumUpdateInterval` to control that behavior. For backwards compatibility with version 7.1.x, if no value is passed, the default value of this parameter is that of `timeout`. This parameter is only available for Android. It has no effect on iOS or Web platforms. | `timeout` | 8.0.0 |
| **`enableLocationFallback`** | boolean | Whether to fall back to the Android framework's `LocationManager` in case Google Play Service's location settings checks fail. This can happen for multiple reasons - e.g. device has no Play Services or device has no network connection (Airplane Mode) If set to `false`, failures are propagated to the caller. Note that `LocationManager` may not be as effective as Google Play Services implementation. If the device's in airplane mode, only the GPS provider is used, which may take longer to return a location, depending on GPS signal. This means that to receive location in such circumstances, you may need to provide a higher timeout. This parameter is only available for Android. It has no effect on iOS or Web platforms. | true | 8.0.0 |
diff --git a/src/definitions.ts b/src/definitions.ts
index 7ad4281..6838720 100644
--- a/src/definitions.ts
+++ b/src/definitions.ts
@@ -237,7 +237,7 @@ export interface PositionOptions {
* The platform may also be able to provide location updates faster than `interval`.
* You may use `minimumUpdateInterval` to control that behavior.
*
- * For backwards compatiblity with version 7.1.x, if no value is passed,
+ * For backwards compatibility with version 7.1.x, if no value is passed,
* the default value of this parameter is that of `timeout`.
*
* This parameter is only available for Android. It has no effect on iOS or Web platforms.