Skip to content

Commit

Permalink
fix byte-compile warning (#18)
Browse files Browse the repository at this point in the history
- docstring has wrong usage of unescaped single quotes (use \= or different quoting)
- https://www.gnu.org/software/emacs/manual/html_node/elisp/Documentation-Tips.html
  • Loading branch information
MartinNowak authored Mar 26, 2024
1 parent 96d4524 commit ff9a45e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oauth2-auto.el
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ Cache data if a miss occurs."
;; Main entry point

(aio-defun oauth2-auto-plist (username provider)
"Returns a 'oauth2-token structure for USERNAME and PROVIDER."
"Returns an \\='oauth2-token structure for USERNAME and PROVIDER."
; Check the plstore for the requested username and provider
(let ((plist (oauth2-auto--plstore-read username provider)))
(if (not (oauth2-auto--plist-needs-refreshing plist))
Expand Down

0 comments on commit ff9a45e

Please sign in to comment.