mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
postgresaql: fix trailing space in entry names
This commit is contained in:
parent
4169fdff34
commit
217b9aea41
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue