mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-03-07 02:24:08 +00:00
add missing space in taginfo listing
say https://taginfo.openstreetmap.org/tags/shop=guns#projects was listing description `POI/feature in the search database(except for values: no).`
This commit is contained in:
committed by
GitHub
parent
436aff2fd3
commit
8f6f113e1c
@@ -35,7 +35,7 @@ function print_taginfo()
|
|||||||
for _, k in ipairs(flex.TAGINFO_MAIN.keys) do
|
for _, k in ipairs(flex.TAGINFO_MAIN.keys) do
|
||||||
local desc = get_key_description(k, 'POI/feature in the search database')
|
local desc = get_key_description(k, 'POI/feature in the search database')
|
||||||
if flex.TAGINFO_MAIN.delete_tags[k] ~= nil then
|
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], ', '))
|
table.concat(flex.TAGINFO_MAIN.delete_tags[k], ', '))
|
||||||
end
|
end
|
||||||
table.insert(tags, desc)
|
table.insert(tags, desc)
|
||||||
|
|||||||
Reference in New Issue
Block a user