mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fixed two misspellings.
Fixed two misspellings of the word "beginning". Signed-off-by: JacobEdelman <edelman.jd@gmail.com>
This commit is contained in:
parent
03142fd5d2
commit
97f07bb61c
1 changed files with 2 additions and 2 deletions
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue