]> git.openstreetmap.org Git - nominatim.git/commitdiff
Merge pull request #3375 from matkoniecz/patch-1
authorSarah Hoffmann <lonvia@denofr.de>
Wed, 27 Mar 2024 09:03:45 +0000 (10:03 +0100)
committerGitHub <noreply@github.com>
Wed, 27 Mar 2024 09:03:45 +0000 (10:03 +0100)
add missing space in taginfo listing

settings/taginfo.lua

index dba395e9b3e3ee9a2fae9badeee40f930c109a61..ef2ad2a60a1094aeee62e3436db6ad0d5de66511 100644 (file)
@@ -35,7 +35,7 @@ function print_taginfo()
     for _, k in ipairs(flex.TAGINFO_MAIN.keys) do
         local desc = get_key_description(k, 'POI/feature in the search database')
         if flex.TAGINFO_MAIN.delete_tags[k] ~= nil then
-            desc.description = string.format('%s(except for values: %s).', desc.description,
+            desc.description = string.format('%s (except for values: %s).', desc.description,
                                 table.concat(flex.TAGINFO_MAIN.delete_tags[k], ', '))
         end
         table.insert(tags, desc)