From d4bf21e6be8c3e9819ed3eab03d90372fc9ba24a Mon Sep 17 00:00:00 2001 From: Abizer Nasir Date: Sun, 31 Mar 2013 13:23:34 +0100 Subject: [PATCH] Minor corrections to doc lines in prelude-core They sound better grammatically. --- core/prelude-core.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/prelude-core.el b/core/prelude-core.el index 2a2da0b..21fc85f 100644 --- a/core/prelude-core.el +++ b/core/prelude-core.el @@ -96,13 +96,13 @@ Position the cursor at its beginning, according to the current mode." (newline-and-indent)) (defun prelude-move-line-up () - "Move up the current line." + "Move the current line up." (interactive) (transpose-lines 1) (forward-line -2)) (defun prelude-move-line-down () - "Move down the current line." + "Move the current line down." (interactive) (forward-line 1) (transpose-lines 1)