Fix spelling errors

Fixde with:
codespell --skip test --write-changes --interactive=2
This commit is contained in:
Daniele Forsi 2022-06-03 23:45:50 +02:00
parent 44319becff
commit 36caec81e7
6 changed files with 12 additions and 12 deletions

View file

@ -16,7 +16,7 @@ PyHamtools 0.7.9
16. December 2021
* Calculating sunrise and sunset close to the artic region raised a ValueError due
to a bug in the underlying 3rd party libary ephem. This release upgrades the
to a bug in the underlying 3rd party library ephem. This release upgrades the
dependency to ephem > 4.1.3 which has the bug already fixed.
PyHamTools 0.7.8
@ -188,7 +188,7 @@ PyHamTools 0.5.0
* corrected Longitude to General Standard (-180...0° West, 0...180° East) [LookupLib]
* improved callsign decoding alogrithm [CallInfo]
* improved callsign decoding algorithm [CallInfo]
* added special case to decode location of VK9 callsigns [CallInfo]

View file

@ -49,7 +49,7 @@ Decode a Callsign and get Country name, ADIF ID, Latitude & Longitude
In this example we will use AD1C's Country-files.com database to perform the lookup.
First we need to instanciate a LookupLib object for Country-files.com database. The latest database will be downloaded automatically.
First we need to instantiate a LookupLib object for Country-files.com database. The latest database will be downloaded automatically.
.. code-block:: none
@ -57,7 +57,7 @@ First we need to instanciate a LookupLib object for Country-files.com database.
>>> my_lookuplib = LookupLib(lookuptype="countryfile")
Next, a Callinfo object needs to be instanciated. The lookuplib object will be injected on construction.
Next, a Callinfo object needs to be instantiated. The lookuplib object will be injected on construction.
.. code-block:: none