]> git.openstreetmap.org Git - nominatim.git/commitdiff
fix some typos
authorMateusz Konieczny <matkoniecz@gmail.com>
Wed, 26 Jun 2024 08:37:23 +0000 (10:37 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Mon, 1 Jul 2024 13:03:57 +0000 (15:03 +0200)
.github/workflows/ci-tests.yml
docs/api/Lookup.md
docs/api/Reverse.md
docs/api/Search.md
docs/customize/Importance.md
src/nominatim_api/search/db_search_builder.py
src/nominatim_db/tools/refresh.py

index c8337ebc93ec6211220f8f96d633551ac6bd1d96..c6ce2532a74d19bef9b31034d0b650e8ca156263 100644 (file)
@@ -80,15 +80,15 @@ jobs:
                   flavour: ${{ matrix.flavour }}
                   lua: ${{ matrix.lua }}
 
-            - name: Install test prerequsites (behave from apt)
+            - name: Install test prerequisites (behave from apt)
               run: sudo apt-get install -y -qq python3-behave
               if: matrix.flavour == 'ubuntu-20'
 
-            - name: Install test prerequsites (behave from pip)
+            - name: Install test prerequisites (behave from pip)
               run: pip3 install behave==1.2.6
               if: (matrix.flavour == 'oldstuff') || (matrix.flavour == 'ubuntu-22')
 
-            - name: Install test prerequsites (from apt for Ununtu 2x)
+            - name: Install test prerequisites (from apt for Ununtu 2x)
               run: sudo apt-get install -y -qq python3-pytest python3-pytest-asyncio uvicorn
               if: matrix.flavour != 'oldstuff'
 
@@ -96,7 +96,7 @@ jobs:
               run: pip3 install -U pytest-asyncio
               if: matrix.flavour == 'ubuntu-20'
 
-            - name: Install test prerequsites (from pip for Ubuntu 18)
+            - name: Install test prerequisites (from pip for Ubuntu 18)
               run: pip3 install pytest pytest-asyncio uvicorn
               if: matrix.flavour == 'oldstuff'
 
@@ -165,7 +165,7 @@ jobs:
               with:
                   cmake-args: -DBUILD_MODULE=on
 
-            - name: Install test prerequsites
+            - name: Install test prerequisites
               run: sudo apt-get install -y -qq python3-behave
 
             - name: BDD tests (legacy tokenizer)
@@ -212,7 +212,7 @@ jobs:
               with:
                   flavour: 'ubuntu-22'
 
-            - name: Install test prerequsites
+            - name: Install test prerequisites
               run: sudo apt-get install -y -qq python3-behave
 
             - name: BDD tests (php)
index a2ba714e117055925571411037ca44cdc6183975..bed01275ecb721f8019460b2b307799b7fc7409e 100644 (file)
@@ -93,7 +93,7 @@ as the ["Accept-Language" HTTP header](https://developer.mozilla.org/en-US/docs/
     results when using Nominatim in the browser versus in a command-line tool
     like wget or curl. The command-line tools
     usually don't send any Accept-Language header, prompting Nominatim
-    to show results in the local language. Browsers on the contratry always
+    to show results in the local language. Browsers on the contrary always
     send the currently chosen browser language.
 
 
index 216ce6e613907b5a96d035d4d0a06eedd53197b9..67306fa83bc1c3d9cfa57ea78b3a00a88cbbb174 100644 (file)
@@ -115,7 +115,7 @@ as the ["Accept-Language" HTTP header](https://developer.mozilla.org/en-US/docs/
     results when using Nominatim in the browser versus in a command-line tool
     like wget or curl. The command-line tools
     usually don't send any Accept-Language header, prompting Nominatim
-    to show results in the local language. Browsers on the contratry always
+    to show results in the local language. Browsers on the contrary always
     send the currently chosen browser language.
 
 
index ab3c8444c9d0c7f7d463c5a1844b12b332d2f2eb..f1b4b8a09c0458b18e2d2bde13acb6f78ff67062 100644 (file)
@@ -152,7 +152,7 @@ as the ["Accept-Language" HTTP header](https://developer.mozilla.org/en-US/docs/
     results when using Nominatim in the browser versus in a command-line tool
     like wget or curl. The command-line tools
     usually don't send any Accept-Language header, prompting Nominatim
-    to show results in the local language. Browsers on the contratry always
+    to show results in the local language. Browsers on the contrary always
     send the currently chosen browser language.
 
 ### Result restriction
index f192d265ed5765bc57176bf1c8396a568f650170..3ff2d558cb84d18748cc5478f4ab51a3132bb520 100644 (file)
@@ -24,7 +24,7 @@ nominatim.org has preprocessed importance tables for the
 and for [secondary importance](https://nominatim.org/data/wikimedia-secondary-importance.sql.gz)
 based on Wikipedia importance of the administrative areas.
 
-The source code for creating these files is avaible in the Github projects
+The source code for creating these files is available in the Github projects
 [osm-search/wikipedia-wikidata](https://github.com/osm-search/wikipedia-wikidata)
 and
 [osm-search/secondary-importance](https://github.com/osm-search/secondary-importance).
index 29a853a0f387504db8ed651655256e66b54ea363..e29f0b931eb4f1b4758e9601d0d502d7bf4b531e 100644 (file)
@@ -275,7 +275,7 @@ class SearchBuilder:
                               use_lookup: bool) -> List[dbf.FieldLookup]:
         """ Create a ranking expression with full name terms and
             additional address lookup. When 'use_lookup' is true, then
-            address lookups will use the index, when the occurences are not
+            address lookups will use the index, when the occurrences are not
             too many.
         """
         # At this point drop unindexed partials from the address.
index 6946a41a441ad7447cab6e0c405e8e45b8bae063..6a40c0a73a4c6427d11fe89b0db0552c19a1e7cf 100644 (file)
@@ -154,7 +154,7 @@ def import_importance_csv(dsn: str, data_file: Path) -> int:
     if not data_file.exists():
         return 1
 
-    # Only import the first occurance of a wikidata ID.
+    # Only import the first occurence of a wikidata ID.
     # This keeps indexes and table small.
     wd_done = set()