diff options
author | William Carroll <wpcarro@gmail.com> | 2020-08-31T15·07+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-08-31T15·07+0100 |
commit | 5d3bb0b7eadc9efc423eb7ef8857fa6df256d254 (patch) | |
tree | b91ebc7f9bbc2572596ae9846c64c7a5e3d0fea6 /emacs/.emacs.d/wpc/region.el | |
parent | 2a5169867208e8808e82303a8b24a5ab660a5dd1 (diff) |
Additional linting
Running `M-x checkdoc` on some of the modules that passed the package-lint but failed additional lints.
Diffstat (limited to 'emacs/.emacs.d/wpc/region.el')
-rw-r--r-- | emacs/.emacs.d/wpc/region.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/.emacs.d/wpc/region.el b/emacs/.emacs.d/wpc/region.el index 80cd9a273fcd..f915f24ec851 100644 --- a/emacs/.emacs.d/wpc/region.el +++ b/emacs/.emacs.d/wpc/region.el @@ -2,8 +2,8 @@ ;; Author: William Carroll <wpcarro@gmail.com> ;; Version: 0.0.1 +;; URL: https://git.wpcarro.dev/wpcarro/briefcase ;; Package-Requires: ((emacs "24")) -;; Homepage: https://user.git.corp.google.com/wpcarro/briefcase ;;; Commentary: ;; Sometimes Emacs's function names and argument ordering is great; other times, @@ -16,7 +16,7 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defun region-to-string () - "Returns the string in the active region." + "Return the string in the active region." (buffer-substring-no-properties (region-beginning) (region-end))) |