From ff9a45e27621aad5b1a2e12a09b01f3e4eaecf96 Mon Sep 17 00:00:00 2001 From: dawg Date: Tue, 26 Mar 2024 23:25:28 +0100 Subject: [PATCH] fix byte-compile warning (#18) - 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 --- oauth2-auto.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oauth2-auto.el b/oauth2-auto.el index e4d324a..8e4bb09 100644 --- a/oauth2-auto.el +++ b/oauth2-auto.el @@ -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))