Skip to content

Commit 217b9ae

Browse files
committed
postgresaql: fix trailing space in entry names
1 parent 4169fdf commit 217b9ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/docs/filters/postgresql/entries.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def get_name
5656
elsif PREPEND_TYPES.include?(type) || type.start_with?('Internals')
5757
"#{type.remove('Internals: ')}: #{base_name}"
5858
else
59-
REPLACE_NAMES[base_name] || base_name
59+
REPLACE_NAMES[base_name] || base_name.strip
6060
end
6161
end
6262

0 commit comments

Comments
 (0)