diff mbox series

[U-Boot] patman: fix some typos in comments

Message ID 20191027165504.2697-1-agust@denx.de
State Accepted
Commit ab4a6aba7f715cff2486e747e4c288043914310a
Delegated to: Simon Glass
Headers show
Series [U-Boot] patman: fix some typos in comments | expand

Commit Message

Anatolij Gustschin Oct. 27, 2019, 4:55 p.m. UTC
s/Subprocress/Subprocess/
s/easiler/easier/
s/repositiory/repository/
s/rangem/range/
s/Retruns/Returns/

Signed-off-by: Anatolij Gustschin <agust@denx.de>
---
 tools/patman/cros_subprocess.py | 4 ++--
 tools/patman/gitutil.py         | 4 ++--
 tools/patman/terminal.py        | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

Comments

Simon Glass Oct. 30, 2019, 1:49 a.m. UTC | #1
On Sun, 27 Oct 2019 at 10:55, Anatolij Gustschin <agust@denx.de> wrote:
>
> s/Subprocress/Subprocess/
> s/easiler/easier/
> s/repositiory/repository/
> s/rangem/range/
> s/Retruns/Returns/
>
> Signed-off-by: Anatolij Gustschin <agust@denx.de>
> ---
>  tools/patman/cros_subprocess.py | 4 ++--
>  tools/patman/gitutil.py         | 4 ++--
>  tools/patman/terminal.py        | 2 +-
>  3 files changed, 5 insertions(+), 5 deletions(-)
>

Reviewed-by: Simon Glass <sjg@chromium.org>
Simon Glass Nov. 14, 2019, 1:42 p.m. UTC | #2
On Sun, 27 Oct 2019 at 10:55, Anatolij Gustschin <agust@denx.de> wrote:
>
> s/Subprocress/Subprocess/
> s/easiler/easier/
> s/repositiory/repository/
> s/rangem/range/
> s/Retruns/Returns/
>
> Signed-off-by: Anatolij Gustschin <agust@denx.de>
> ---
>  tools/patman/cros_subprocess.py | 4 ++--
>  tools/patman/gitutil.py         | 4 ++--
>  tools/patman/terminal.py        | 2 +-
>  3 files changed, 5 insertions(+), 5 deletions(-)
>

Reviewed-by: Simon Glass <sjg@chromium.org>

Applied to u-boot-dm, thanks!
Simon Glass Nov. 14, 2019, 1:42 p.m. UTC | #3
On Sun, 27 Oct 2019 at 10:55, Anatolij Gustschin <agust@denx.de> wrote:
>
> s/Subprocress/Subprocess/
> s/easiler/easier/
> s/repositiory/repository/
> s/rangem/range/
> s/Retruns/Returns/
>
> Signed-off-by: Anatolij Gustschin <agust@denx.de>
> ---
>  tools/patman/cros_subprocess.py | 4 ++--
>  tools/patman/gitutil.py         | 4 ++--
>  tools/patman/terminal.py        | 2 +-
>  3 files changed, 5 insertions(+), 5 deletions(-)
>

Reviewed-by: Simon Glass <sjg@chromium.org>

Applied to u-boot-dm, thanks!
Applied to u-boot-dm, thanks!
Simon Glass Nov. 14, 2019, 1:43 p.m. UTC | #4
On Sun, 27 Oct 2019 at 10:55, Anatolij Gustschin <agust@denx.de> wrote:
>
> s/Subprocress/Subprocess/
> s/easiler/easier/
> s/repositiory/repository/
> s/rangem/range/
> s/Retruns/Returns/
>
> Signed-off-by: Anatolij Gustschin <agust@denx.de>
> ---
>  tools/patman/cros_subprocess.py | 4 ++--
>  tools/patman/gitutil.py         | 4 ++--
>  tools/patman/terminal.py        | 2 +-
>  3 files changed, 5 insertions(+), 5 deletions(-)
>

Reviewed-by: Simon Glass <sjg@chromium.org>

Applied to u-boot-dm, thanks!
Applied to u-boot-dm, thanks!
Applied to u-boot-dm, thanks!
diff mbox series

Patch

diff --git a/tools/patman/cros_subprocess.py b/tools/patman/cros_subprocess.py
index 0f0d60dfb7..efd0a5aaf7 100644
--- a/tools/patman/cros_subprocess.py
+++ b/tools/patman/cros_subprocess.py
@@ -6,11 +6,11 @@ 
 # Licensed to PSF under a Contributor Agreement.
 # See http://www.python.org/2.4/license for licensing details.
 
-"""Subprocress execution
+"""Subprocess execution
 
 This module holds a subclass of subprocess.Popen with our own required
 features, mainly that we get access to the subprocess output while it
-is running rather than just at the end. This makes it easiler to show
+is running rather than just at the end. This makes it easier to show
 progress information and filter output in real time.
 """
 
diff --git a/tools/patman/gitutil.py b/tools/patman/gitutil.py
index dce7fa25b6..a2a225c6b9 100644
--- a/tools/patman/gitutil.py
+++ b/tools/patman/gitutil.py
@@ -23,7 +23,7 @@  def LogCmd(commit_range, git_dir=None, oneline=False, reverse=False,
 
     Args:
         commit_range: Range expression to use for log, None for none
-        git_dir: Path to git repositiory (None to use default)
+        git_dir: Path to git repository (None to use default)
         oneline: True to use --oneline, else False
         reverse: True to reverse the log (--reverse)
         count: Number of commits to list, or None for no limit
@@ -166,7 +166,7 @@  def CountCommitsInRange(git_dir, range_expr):
         git_dir: Directory containing git repo
         range_expr: Range to check
     Return:
-        Number of patches that exist in the supplied rangem or None if none
+        Number of patches that exist in the supplied range or None if none
         were found
     """
     pipe = [LogCmd(range_expr, git_dir=git_dir, oneline=True)]
diff --git a/tools/patman/terminal.py b/tools/patman/terminal.py
index 4ceab189bf..7a3b658b00 100644
--- a/tools/patman/terminal.py
+++ b/tools/patman/terminal.py
@@ -128,7 +128,7 @@  class Color(object):
         return ''
 
     def Stop(self):
-        """Retruns a stop color code.
+        """Returns a stop color code.
 
         Returns:
           If color is enabled, returns an ANSI color reset sequence,