Browse Source

Minor corrections to doc lines in prelude-core

They sound better grammatically.
custom
Abizer Nasir 13 years ago
parent
commit
d4bf21e6be
  1. 4
      core/prelude-core.el

4
core/prelude-core.el

@ -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…
Cancel
Save