Skip to content

Commit

Permalink
Minor corrections to doc lines in prelude-core
Browse files Browse the repository at this point in the history
They sound better grammatically.
  • Loading branch information
Abizern committed Mar 31, 2013
1 parent 773578d commit d4bf21e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/prelude-core.el
Expand Up @@ -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)
Expand Down

0 comments on commit d4bf21e

Please sign in to comment.