diff --git a/core/autoload/buffers.el b/core/autoload/buffers.el index 2bd497e45..bb71b30b3 100644 --- a/core/autoload/buffers.el +++ b/core/autoload/buffers.el @@ -115,7 +115,7 @@ If no project is active, return all buffers." ;;;###autoload (defun doom-real-buffer-list (&optional buffer-list) - "Return a list of buffers that satify `doom-real-buffer-p'." + "Return a list of buffers that satisfy `doom-real-buffer-p'." (cl-remove-if-not #'doom-real-buffer-p (or buffer-list (doom-buffer-list)))) ;;;###autoload diff --git a/core/autoload/help.el b/core/autoload/help.el index 9091d2b1e..ffb2bff80 100644 --- a/core/autoload/help.el +++ b/core/autoload/help.el @@ -221,7 +221,7 @@ will be automatically appended to the result." ;;;###autoload (defun doom/help-search (&optional initial-input) - "Preform a text search on all of Doom's documentation." + "Perform a text search on all of Doom's documentation." (interactive) (funcall (cond ((fboundp '+ivy-file-search) #'+ivy-file-search) diff --git a/core/autoload/projects.el b/core/autoload/projects.el index e6ce39fd0..e17dcd0ba 100644 --- a/core/autoload/projects.el +++ b/core/autoload/projects.el @@ -41,7 +41,7 @@ they are absolute." ;;;###autoload (defun doom/find-file-in-other-project (project-root) - "Preforms `projectile-find-file' in a known project of your choosing." + "Performs `projectile-find-file' in a known project of your choosing." (interactive (list (completing-read "Find file in project: " (projectile-relevant-known-projects)))) @@ -51,7 +51,7 @@ they are absolute." ;;;###autoload (defun doom/browse-in-other-project (project-root) - "Preforms `find-file' in a known project of your choosing." + "Performs `find-file' in a known project of your choosing." (interactive (list (completing-read "Browse in project: " (projectile-relevant-known-projects)))) diff --git a/core/core-lib.el b/core/core-lib.el index 04405468a..e925762bb 100644 --- a/core/core-lib.el +++ b/core/core-lib.el @@ -205,12 +205,12 @@ TRIGGER-HOOK is a list of quoted hooks and/or sharp-quoted functions." ;;; Sugars (defun dir! () - "Returns the directory of the emacs lisp file this macro is called from." + "Returns the directory of the emacs lisp file this function is called from." (when-let (path (file!)) (directory-file-name (file-name-directory path)))) (defun file! () - "Return the emacs lisp file this macro is called from." + "Return the emacs lisp file this function is called from." (cond ((bound-and-true-p byte-compile-current-file)) (load-file-name) ((stringp (car-safe current-load-list)) diff --git a/modules/config/default/+emacs-bindings.el b/modules/config/default/+emacs-bindings.el index 150a62a47..e2298b0f0 100644 --- a/modules/config/default/+emacs-bindings.el +++ b/modules/config/default/+emacs-bindings.el @@ -1,6 +1,6 @@ ;;; config/default/+emacs-bindings.el -*- lexical-binding: t; -*- -;; Sensible deafult key bindings for non-evil users +;; Sensible default key bindings for non-evil users (setq doom-leader-alt-key "C-c" doom-localleader-alt-key "C-c l") diff --git a/modules/emacs/dired/config.el b/modules/emacs/dired/config.el index d5ea119a2..844bb35c4 100644 --- a/modules/emacs/dired/config.el +++ b/modules/emacs/dired/config.el @@ -103,7 +103,7 @@ we have to clean it up ourselves." (local-unset-key [mouse-1])))) (defadvice! +dired--ranger-travel-a () - "Temprorary fix for this function until ralesi/ranger.el#236 gets merged." + "Temporary fix for this function until ralesi/ranger.el#236 gets merged." :override #'ranger-travel (interactive) (let ((prompt "Travel: ")) diff --git a/modules/email/notmuch/autoload.el b/modules/email/notmuch/autoload.el index ea9c6a3a3..45ebf8cea 100644 --- a/modules/email/notmuch/autoload.el +++ b/modules/email/notmuch/autoload.el @@ -32,7 +32,7 @@ (+workspace/delete "*MAIL*"))) (defun +notmuch-get-sync-command () - "Return a shell command string to synchronize your notmuch mmail with." + "Return a shell command string to synchronize your notmuch mail with." (let* ((afew-cmd "afew -a -t") (sync-cmd (pcase +notmuch-sync-backend