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

@ -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