Merge pull request #9675 from JacobEdelman/patch-1

Fixed two misspellings
This commit is contained in:
Alexander Morozov 2014-12-16 12:06:23 -08:00
Родитель 17cacf3326 97f07bb61c
Коммит 323c3c1381
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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'