Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion auth/token_verifier.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ func (tv *tokenVerifier) VerifyToken(ctx context.Context, token string, isEmulat
return payload, nil
}

// Verifying the signature requires syncronized access to a key cache and
// Verifying the signature requires synchronized access to a key cache and
// potentially issues an http request. Therefore we do it last.
if err := tv.verifySignature(ctx, token); err != nil {
return nil, err
Expand Down