From 7bf7c076030a690c67e7a5506b803d40e5a3c387 Mon Sep 17 00:00:00 2001 From: Dan Pantry Date: Mon, 25 Mar 2024 18:09:05 -0700 Subject: [PATCH] Fix typo --- cli/oauth2.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/oauth2.go b/cli/oauth2.go index eb57070a..d6719555 100644 --- a/cli/oauth2.go +++ b/cli/oauth2.go @@ -99,7 +99,7 @@ func (o OAuth2Listener) Close() error { func (o OAuth2Listener) ServeHTTP(w http.ResponseWriter, r *http.Request) { info, err := ParseCallbackRequest(r) if err == nil { - // The only errors that might occur would be incorreclty formatted requests, which we will silently drop. + // The only errors that might occur would be incorrectly formatted requests, which we will silently drop. o.callbackCh <- info }