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

Correct spelling mistakes #80

Open
wants to merge 1 commit 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
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Official support of python 3.10, 3.11 and 3.12

## 2.4.1

- Fix issue with python 2.7 compatibily. See [#41](https://github.com/mapado/haversine/issues/41)
- Fix issue with python 2.7 compatibility. See [#41](https://github.com/mapado/haversine/issues/41)

## 2.4.0

Expand Down Expand Up @@ -96,7 +96,7 @@ If you did use `miles` or `nautical_miles`, you just need to do that:
+ haversine(lyon, paris, unit='nmi')
```

Du to a small change in the formula, the precision for miles aud nautical miles has slighty changed.
Du to a small change in the formula, the precision for miles aud nautical miles has slightly changed.
Example : distance between Lyon, France and Paris, France changed from `243.7125041070121 miles` to `243.71250609539814 miles`. Same for nautical miles.

## 1.0.2 - 2018-10-13
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Calculates a point from a given vector (distance and direction) and start point.
Currently explicitly supports both cardinal (north, east, south, west) and intercardinal (northeast, southeast, southwest, northwest) directions.
But also allows for explicit angles expressed in Radians.

## Example: Finding arbitary point from Paris
## Example: Finding arbitrary point from Paris

```python
from haversine import inverse_haversine, Direction
Expand Down