emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/oauth2 1d352b3 17/23: Fix some quoting problems in doc


From: Stefan Monnier
Subject: [elpa] externals/oauth2 1d352b3 17/23: Fix some quoting problems in doc strings
Date: Tue, 1 Dec 2020 16:32:00 -0500 (EST)

branch: externals/oauth2
commit 1d352b3dcd186d93bce7baf26818967c022187e4
Author: Paul Eggert <eggert@cs.ucla.edu>
Commit: Paul Eggert <eggert@cs.ucla.edu>

    Fix some quoting problems in doc strings
    
    Most of these are minor issues involving, e.g., quoting `like this'
    instead of 'like this'.  A few involve escaping ` and ' with a
    preceding \= when the characters should not be turned into curved single
    quotes.
---
 oauth2.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/oauth2.el b/oauth2.el
index 073ce37..c8807f3 100644
--- a/oauth2.el
+++ b/oauth2.el
@@ -190,11 +190,11 @@ This allows to store the token in an unique way."
 (defvar oauth--token-data)
 
 (defun oauth2-authz-bearer-header (token)
-  "Return 'Authoriztions: Bearer' header with TOKEN."
+  "Return `Authoriztions: Bearer' header with TOKEN."
   (cons "Authorization" (format "Bearer %s" token)))
 
 (defun oauth2-extra-headers (extra-headers)
-  "Return EXTRA-HEADERS with 'Authorization: Bearer' added."
+  "Return EXTRA-HEADERS with `Authorization: Bearer' added."
   (cons (oauth2-authz-bearer-header (oauth2-token-access-token (car 
oauth--token-data)))
         extra-headers))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]