##// END OF EJS Templates
help: add missed last new line to "internals" topic...
Yuya Nishihara -
r27400:64208bd4 default
parent child Browse files
Show More
@@ -174,9 +174,9 b' def internalshelp(ui):'
174 174 """Generate the index for the "internals" topic."""
175 175 lines = []
176 176 for names, header, doc in internalstable:
177 lines.append(' :%s: %s' % (names[0], header))
177 lines.append(' :%s: %s\n' % (names[0], header))
178 178
179 return '\n'.join(lines)
179 return ''.join(lines)
180 180
181 181 helptable = sorted([
182 182 (["config", "hgrc"], _("Configuration Files"), loaddoc('config')),
General Comments 0
You need to be logged in to leave comments. Login now