~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/doc_generate/autodoc_rstx.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-06-05 04:05:05 UTC
  • mfrom: (3473.1.1 ianc-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20080605040505-i9kqxg2fps2qjdi0
Add the 'alias' command (Tim Penhey)

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
 
128
128
def _get_commands_section(registry, title="Commands", hdg_level1="#",
129
129
                          hdg_level2="="):
130
 
    """Build the commands reference section of the manual."""
 
130
    """Build the comands reference section of the manual."""
131
131
    lines = [title, hdg_level1 * len(title), ""]
132
132
    cmds = sorted(bzrlib.commands.builtin_command_names())
133
133
    for cmd_name in cmds: