From: Sarah Hoffmann Date: Wed, 27 Mar 2024 09:03:45 +0000 (+0100) Subject: Merge pull request #3375 from matkoniecz/patch-1 X-Git-Tag: deploy~11^2~1 X-Git-Url: https://git.openstreetmap.org/nominatim.git/commitdiff_plain/e53eb79923517a44060464d86d0803e8f0a80238?hp=c39fc5d180247f777fde20e79cdd1a0b312eb23c Merge pull request #3375 from matkoniecz/patch-1 add missing space in taginfo listing --- diff --git a/settings/taginfo.lua b/settings/taginfo.lua index dba395e9..ef2ad2a6 100644 --- a/settings/taginfo.lua +++ b/settings/taginfo.lua @@ -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)