postgresaql: fix trailing space in entry names

This commit is contained in:
Simon Legner 2024-01-14 21:09:50 +01:00
parent 4169fdff34
commit 217b9aea41

View file

@ -56,7 +56,7 @@ module Docs
elsif PREPEND_TYPES.include?(type) || type.start_with?('Internals')
"#{type.remove('Internals: ')}: #{base_name}"
else
REPLACE_NAMES[base_name] || base_name
REPLACE_NAMES[base_name] || base_name.strip
end
end