about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2024-10-01 15:50:13 +0100
committerDavid Morgan <djm_uk@protonmail.com>2024-10-01 15:50:13 +0100
commit1ff6bfd6860ca269eedaf6e5965f9dceea7fe09a (patch)
tree7627d9141ea7cf956aaab4e707872a75c5a52eab
parentf925f618d51e3f0334710a32024617a380f4e413 (diff)
downloaddotfiles-1ff6bfd6860ca269eedaf6e5965f9dceea7fe09a.tar.gz
Add a full stop to the end of docstrings
-rw-r--r--.emacs.d/lisp/init-editor.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-editor.el b/.emacs.d/lisp/init-editor.el
index 72369f5..925b05d 100644
--- a/.emacs.d/lisp/init-editor.el
+++ b/.emacs.d/lisp/init-editor.el
@@ -173,11 +173,11 @@
   :custom (xref-search-program 'ripgrep)
   :config
   (defun xref-find-references-other-window (identifier)
-    "Like `xref-find-references' but switch to the other window"
+    "Like `xref-find-references' but switch to the other window."
     (interactive (list (xref--read-identifier "Find references of: ")))
     (xref--find-xrefs identifier 'references identifier 'window))
   (defun xref-find-references-other-frame (identifier)
-    "Like `xref-find-references' but switch to the other frame"
+    "Like `xref-find-references' but switch to the other frame."
     (interactive (list (xref--read-identifier "Find references of: ")))
     (xref--find-xrefs identifier 'references identifier 'frame))
   (define-key ctl-x-4-map (kbd "M-?") 'xref-find-references-other-window)