From 97f07bb61ccf6e5a3a0fcc72894d5f37310d0109 Mon Sep 17 00:00:00 2001 From: Jacob Edelman Date: Mon, 15 Dec 2014 17:30:52 -0500 Subject: [PATCH] Fixed two misspellings. Fixed two misspellings of the word "beginning". Signed-off-by: JacobEdelman --- docs/docs-update.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs-update.py b/docs/docs-update.py index 586bde482d..c40da773e3 100755 --- a/docs/docs-update.py +++ b/docs/docs-update.py @@ -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'