]> git.openstreetmap.org Git - nominatim.git/blobdiff - nominatim/tokenizer/sanitizers/clean_postcodes.py
fixed typos in docs and code comments
[nominatim.git] / nominatim / tokenizer / sanitizers / clean_postcodes.py
index cabacff41ee5810f587c3c2cb055c1c995ea81e8..5eaea3917c7aea9a2e8047f773cd03ac17990d34 100644 (file)
@@ -59,7 +59,7 @@ class _PostcodeSanitizer:
     def scan(self, postcode: str, country: Optional[str]) -> Optional[Tuple[str, str]]:
         """ Check the postcode for correct formatting and return the
             normalized version. Returns None if the postcode does not
-            correspond to the oficial format of the given country.
+            correspond to the official format of the given country.
         """
         match = self.matcher.match(country, postcode)
         if match is None:
@@ -74,7 +74,7 @@ class _PostcodeSanitizer:
 
 
 def create(config: SanitizerConfig) -> Callable[[ProcessInfo], None]:
-    """ Create a housenumber processing function.
+    """ Create a function that filters postcodes by their officially allowed pattern.
     """
 
     return _PostcodeSanitizer(config)