Skip to content

Commit

Permalink
add missing space in taginfo listing
Browse files Browse the repository at this point in the history
say https://taginfo.openstreetmap.org/tags/shop=guns#projects was listing description

`POI/feature in the search database(except for values: no).`
  • Loading branch information
matkoniecz authored Mar 26, 2024
1 parent 436aff2 commit 8f6f113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion settings/taginfo.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 8f6f113

Please sign in to comment.