branch: elpa/magit
commit 5c40aded99ce9e0a5fff40baf431a05d126fd26a
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>
git-commit-{prev,next}-message: Use term "messages" in docstrings
We already did that, just not consistently.
---
lisp/git-commit.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lisp/git-commit.el b/lisp/git-commit.el
index 47eca20e9ab..54fd6415700 100644
--- a/lisp/git-commit.el
+++ b/lisp/git-commit.el
@@ -738,7 +738,7 @@ conventions are checked."
(defun git-commit-prev-message (arg)
"Cycle backward through message history, after saving current message.
-With a numeric prefix ARG, go back ARG comments."
+With a numeric prefix ARG, go back ARG messages."
(interactive "*p")
(let ((len (ring-length log-edit-comment-ring)))
(if (<= len 0)
@@ -766,7 +766,7 @@ With a numeric prefix ARG, go back ARG comments."
(defun git-commit-next-message (arg)
"Cycle forward through message history, after saving current message.
-With a numeric prefix ARG, go forward ARG comments."
+With a numeric prefix ARG, go forward ARG messages."
(interactive "*p")
(git-commit-prev-message (- arg)))