~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/doc_generate/autodoc_rstx.py

  • Committer: Christophe Troestler
  • Date: 2008-07-19 15:00:27 UTC
  • mto: This revision was merged to the branch mainline in revision 3582.
  • Revision ID: christophe.troestler@umh.ac.be-20080719150027-tbdt3dm1pakina0a
(trivial) Corrected typos.

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: