From 653a402eae3e355b3f9752b20ca15b57e2cadc5d Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Tue, 19 Feb 2019 10:33:26 -0500 Subject: [PATCH] Fix typo in docstring of split-window-right-i3 --- .emacs.d/init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index c4bfaa5..2244f5b 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -484,7 +484,7 @@ (call-process "i3" nil nil nil "split v") (make-frame)) (defun split-window-right-i3 () - "It's like `split-window-below', but uses i3 stuff" + "It's like `split-window-right', but uses i3 stuff" (interactive) (call-process "i3" nil nil nil "split h") (make-frame))