##// END OF EJS Templates
help: normalize extension shadow hint
Matt Mackall -
r22112:d968f474 default
parent child Browse files
Show More
@@ -276,8 +276,8 b' def help_(ui, name, unknowncmd=False, fu'
276 276 mod = extensions.find(name)
277 277 doc = gettext(mod.__doc__) or ''
278 278 if '\n' in doc.strip():
279 msg = _('use "hg help -e %s" to show help for '
280 'the %s extension') % (name, name)
279 msg = _('(use "hg help -e %s" to show help for '
280 'the %s extension)') % (name, name)
281 281 rst.append('\n%s\n' % msg)
282 282 except KeyError:
283 283 pass
@@ -388,7 +388,7 b' Extension module help vs command help:'
388 388 compared to the working directory, and, when no revisions are specified,
389 389 the working directory files are compared to its parent.
390 390
391 use "hg help -e extdiff" to show help for the extdiff extension
391 (use "hg help -e extdiff" to show help for the extdiff extension)
392 392
393 393 options:
394 394
@@ -532,7 +532,7 b' Make sure no one adds back a -b option:'
532 532
533 533 strip changesets and all their descendants from the repository
534 534
535 use "hg help -e strip" to show help for the strip extension
535 (use "hg help -e strip" to show help for the strip extension)
536 536
537 537 options:
538 538
General Comments 0
You need to be logged in to leave comments. Login now