summaryrefslogtreecommitdiffstatshomepage
path: root/nroam-utils.el
diff options
context:
space:
mode:
authorGravatar Nicolas Petton2021-03-13 14:19:27 +0100
committerGravatar Nicolas Petton2021-03-13 14:19:27 +0100
commite44ea27370ee631e8dc31434d524195070778fd1 (patch)
tree944558ba8d18c84adb2016a311c5481d43d17b45 /nroam-utils.el
parenta60533106aa3afd0d4119432474081e667ef60fd (diff)
downloadnroam-e44ea27370ee631e8dc31434d524195070778fd1.tar.gz
nroam-e44ea27370ee631e8dc31434d524195070778fd1.zip
* nroam-utils.el (nroam--ensure-empty-line): Copyedit docstring.
Diffstat (limited to 'nroam-utils.el')
-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"))))