Minor corrections to doc lines in prelude-core
They sound better grammatically.
This commit is contained in:
parent
773578d255
commit
d4bf21e6be
1 changed files with 2 additions and 2 deletions
|
@ -96,13 +96,13 @@ Position the cursor at its beginning, according to the current mode."
|
||||||
(newline-and-indent))
|
(newline-and-indent))
|
||||||
|
|
||||||
(defun prelude-move-line-up ()
|
(defun prelude-move-line-up ()
|
||||||
"Move up the current line."
|
"Move the current line up."
|
||||||
(interactive)
|
(interactive)
|
||||||
(transpose-lines 1)
|
(transpose-lines 1)
|
||||||
(forward-line -2))
|
(forward-line -2))
|
||||||
|
|
||||||
(defun prelude-move-line-down ()
|
(defun prelude-move-line-down ()
|
||||||
"Move down the current line."
|
"Move the current line down."
|
||||||
(interactive)
|
(interactive)
|
||||||
(forward-line 1)
|
(forward-line 1)
|
||||||
(transpose-lines 1)
|
(transpose-lines 1)
|
||||||
|
|
Loading…
Reference in a new issue