aboutsummaryrefslogtreecommitdiff
path: root/lisp/git-commit.el
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2025-01-04 16:13:36 +0100
committerJonas Bernoulli <jonas@bernoul.li>2025-01-04 16:13:36 +0100
commit5c40aded99ce9e0a5fff40baf431a05d126fd26a (patch)
treead8f4a616fcd794fbdeb504f221ac03b0c63009b /lisp/git-commit.el
parent929eb4dca516b337becd1ffc1d5abadb71dc032b (diff)
git-commit-{prev,next}-message: Use term "messages" in docstrings
We already did that, just not consistently.
Diffstat (limited to 'lisp/git-commit.el')
-rw-r--r--lisp/git-commit.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/git-commit.el b/lisp/git-commit.el
index 47eca20..54fd641 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)))