]> git.openstreetmap.org Git - nominatim.git/blobdiff - nominatim/db/properties.py
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / nominatim / db / properties.py
index 3624c950e4a158c6b4f7d8b6ab7d8f9cfbd6911c..40cb262edf4e048592ac8cc45849b2edeff669b8 100644 (file)
@@ -12,7 +12,7 @@ from typing import Optional, cast
 from nominatim.db.connection import Connection
 
 def set_property(conn: Connection, name: str, value: str) -> None:
-    """ Add or replace the propery with the given name.
+    """ Add or replace the property with the given name.
     """
     with conn.cursor() as cur:
         cur.execute('SELECT value FROM nominatim_properties WHERE property = %s',