aboutsummaryrefslogtreecommitdiff
path: root/lisp/magit-git.el
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2025-03-31 11:34:53 +0200
committerJonas Bernoulli <jonas@bernoul.li>2025-03-31 11:34:53 +0200
commit40220d6fff495cfa92c34e51d8fd1617e183643e (patch)
treec003697a0cfaa75072a96d8c2f95866668adaec7 /lisp/magit-git.el
parentc7147bb800a4083ba9644381203008f0510d499d (diff)
magit-git-{lines,items}: Fix docstring pastos
Diffstat (limited to 'lisp/magit-git.el')
-rw-r--r--lisp/magit-git.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/magit-git.el b/lisp/magit-git.el
index e676d01..2d47c91 100644
--- a/lisp/magit-git.el
+++ b/lisp/magit-git.el
@@ -517,8 +517,8 @@ newline, return an empty string."
"Execute Git with ARGS, returning its output as a list of lines.
Empty lines anywhere in the output are omitted.
-If Git exits with a non-zero exit status, then report show a
-message and add a section in the respective process buffer."
+If Git exits with a non-zero exit status, show a message and add
+a section in the respective process buffer."
(magit--with-temp-process-buffer
(apply #'magit-git-insert args)
(split-string (buffer-string) "\n" t)))
@@ -527,8 +527,8 @@ message and add a section in the respective process buffer."
"Execute Git with ARGS, returning its null-separated output as a list.
Empty items anywhere in the output are omitted.
-If Git exits with a non-zero exit status, then report show a
-message and add a section in the respective process buffer."
+If Git exits with a non-zero exit status, show a message and add
+a section in the respective process buffer."
(magit--with-temp-process-buffer
(apply #'magit-git-insert args)
(split-string (buffer-string) "\0" t)))