We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c500395 commit 077e339Copy full SHA for 077e339
lisp/ghub.el
@@ -755,13 +755,13 @@ and call `auth-source-forget+'."
755
:user user)))))
756
(unless (or token nocreate)
757
(error "\
758
-Required %s token (%S for %s%sS) does not exist.
+Required %s token (%S for %s%S) does not exist.
759
See https://magit.vc/manual/ghub/Getting-Started.html
760
or (info \"(ghub)Getting Started\") for instructions."
761
(capitalize (symbol-name (or forge 'github)))
762
user
763
(if (string-match "\\`\\([^/]+\\)" host)
764
- (format "either \"%s\" or" (match-string 1 host))
+ (format "either %S or " (match-string 1 host))
765
"")
766
host))
767
(if (functionp token) (funcall token) token)))
0 commit comments