Mercurial > hg
changeset 13345:b8214d871338
doc: Capitalize the "options" header of mercurial commands
author | Javi Merino <cibervicho@gmail.com> |
---|---|
date | Sat, 05 Feb 2011 14:37:25 +0000 |
parents | 6367459decf7 |
children | 91fe769ac84e |
files | doc/gendoc.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/gendoc.py Sat Feb 05 13:59:34 2011 +0000 +++ b/doc/gendoc.py Sat Feb 05 14:37:25 2011 +0000 @@ -143,7 +143,7 @@ opt_output = list(d['opts']) if opt_output: opts_len = max([len(line[0]) for line in opt_output]) - ui.write(_("options:\n\n")) + ui.write(_("Options:\n\n")) for optstr, desc in opt_output: if desc: s = "%-*s %s" % (opts_len, optstr, desc)