summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--nroam-utils.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/nroam-utils.el b/nroam-utils.el
index 89ae438..e94bdff 100644
--- a/nroam-utils.el
+++ b/nroam-utils.el
@@ -30,7 +30,7 @@
(format "%s%s" thing (if (> n 1) "s" "")))
(defun nroam--ensure-empty-line ()
- "Insert a newline character if the buffer does contain one before point."
+ "Insert a newline character if the buffer does not contain one before point."
(let ((inhibit-read-only t))
(unless (eq ?\n (char-before (1- (point)))) (insert "\n"))))