~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/doc_generate/autodoc_rstx.py

  • Committer: Andrew Bennetts
  • Date: 2008-08-07 00:25:38 UTC
  • mfrom: (3612 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3613.
  • Revision ID: andrew.bennetts@canonical.com-20080807002538-mtl1fcgy2fdabha4
Merge from bzr.dev.

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 comands reference section of the manual."""
 
130
    """Build the commands 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: