瀏覽代碼

Fixed two misspellings.

Fixed two misspellings of the word "beginning".

Signed-off-by: JacobEdelman <edelman.jd@gmail.com>
Jacob Edelman 10 年之前
父節點
當前提交
97f07bb61c
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      docs/docs-update.py

+ 2 - 2
docs/docs-update.py

@@ -56,14 +56,14 @@ def update_cli_reference():
             # Prose
             # Prose
             match = re.match("(    \s*)Usage: docker ([a-z]+)", line)
             match = re.match("(    \s*)Usage: docker ([a-z]+)", line)
             if match:
             if match:
-                # the begining of a Docker command usage block
+                # the beginning of a Docker command usage block
                 space = match.group(1)
                 space = match.group(1)
                 command = match.group(2)
                 command = match.group(2)
                 mode = 'c'
                 mode = 'c'
             else:
             else:
                 match = re.match("(    \s*)Usage of .*docker.*:", line)
                 match = re.match("(    \s*)Usage of .*docker.*:", line)
                 if match:
                 if match:
-                    # the begining of the Docker --help usage block
+                    # the beginning of the Docker --help usage block
                     space = match.group(1)
                     space = match.group(1)
                     command = ""
                     command = ""
                     mode = 'c'
                     mode = 'c'