Minor corrections to doc lines in prelude-core

They sound better grammatically.
This commit is contained in:
Abizer Nasir 2013-03-31 13:23:34 +01:00
parent 773578d255
commit d4bf21e6be

View file

@ -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)