]> git.openstreetmap.org Git - nominatim.git/commitdiff
fix typos of name Nominatim
authorMarc Tobias <mtmail@gmx.net>
Wed, 4 May 2022 23:04:47 +0000 (01:04 +0200)
committerMarc Tobias <mtmail@gmx.net>
Wed, 4 May 2022 23:04:47 +0000 (01:04 +0200)
docs/develop/Tokenizers.md
lib-php/TokenPostcode.php
nominatim/tools/exec_utils.py
test/python/tokenizer/test_legacy.py

index 28d8fd19733140c6db368238014c8adda0722028..2b4da005090ab28ec4f6c41215d32f3dc5c87ace 100644 (file)
@@ -93,7 +93,7 @@ for a custom tokenizer implementation.
 
 Nominatim expects two files for a tokenizer:
 
-* `nominiatim/tokenizer/<NAME>_tokenizer.py` containing the Python part of the
+* `nominatim/tokenizer/<NAME>_tokenizer.py` containing the Python part of the
   implementation
 * `lib-php/tokenizer/<NAME>_tokenizer.php` with the PHP part of the
   implementation
index 94e17793b7119fc987b53eaace5a7600a8127b62..f0dbd4571676ac59b0030b91a5bd9700ad9b3860 100644 (file)
@@ -17,7 +17,7 @@ class Postcode
 {
     /// Database word id, if available.
     private $iId;
-    /// Full nomralized postcode (upper cased).
+    /// Full normalized postcode (upper cased).
     private $sPostcode;
     // Optional country code the postcode belongs to (currently unused).
     private $sCountryCode;
index 10d8fbc08acbf398f5d0a28c799395b1d20b2518..b06b85336a1949b9397b39bfda318bba0829788b 100644 (file)
@@ -42,7 +42,7 @@ def run_legacy_script(script, *args, nominatim_env=None, throw_on_fail=False):
 
 def run_api_script(endpoint, project_dir, extra_env=None, phpcgi_bin=None,
                    params=None):
-    """ Execute a Nominiatim API function.
+    """ Execute a Nominatim API function.
 
         The function needs a project directory that contains the website
         directory with the scripts to be executed. The scripts will be run
index 0e46f1dc8928ebeede61714cc6f52dd495faa61c..8f79e2422b74c46f7634462e797092dd40a1bfac 100644 (file)
@@ -29,7 +29,7 @@ def word_table(temp_db_conn):
 def test_config(project_env, tmp_path):
     module_dir = tmp_path / 'module_src'
     module_dir.mkdir()
-    (module_dir / 'nominatim.so').write_text('TEST nomiantim.so')
+    (module_dir / 'nominatim.so').write_text('TEST nominatim.so')
 
     project_env.lib_dir.module = module_dir
 
@@ -121,7 +121,7 @@ def test_init_new(tokenizer_factory, test_config, monkeypatch,
     outfile = test_config.project_dir / 'module' / 'nominatim.so'
 
     assert outfile.exists()
-    assert outfile.read_text() == 'TEST nomiantim.so'
+    assert outfile.read_text() == 'TEST nominatim.so'
     assert outfile.stat().st_mode == 33261
 
 
@@ -206,7 +206,7 @@ def test_migrate_database(tokenizer_factory, test_config, temp_db_conn, monkeypa
     outfile = test_config.project_dir / 'module' / 'nominatim.so'
 
     assert outfile.exists()
-    assert outfile.read_text() == 'TEST nomiantim.so'
+    assert outfile.read_text() == 'TEST nominatim.so'
     assert outfile.stat().st_mode == 33261