Skip to content

Commit

Permalink
Merge pull request moby#9675 from JacobEdelman/patch-1
Browse files Browse the repository at this point in the history
Fixed two misspellings
  • Loading branch information
LK4D4 committed Dec 16, 2014
2 parents 17cacf3 + 97f07bb commit 323c3c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs-update.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ def update_cli_reference():
# Prose
match = re.match("( \s*)Usage: docker ([a-z]+)", line)
if match:
# the begining of a Docker command usage block
# the beginning of a Docker command usage block
space = match.group(1)
command = match.group(2)
mode = 'c'
else:
match = re.match("( \s*)Usage of .*docker.*:", line)
if match:
# the begining of the Docker --help usage block
# the beginning of the Docker --help usage block
space = match.group(1)
command = ""
mode = 'c'
Expand Down

0 comments on commit 323c3c1

Please sign in to comment.