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)