From 92995524680e864f3275b3d2f5dd8b12864d0c16 Mon Sep 17 00:00:00 2001 From: Julien Deniau <1398469+jdeniau@users.noreply.github.com> Date: Fri, 26 Jul 2024 15:10:42 +0200 Subject: [PATCH] type reviwedog -> reviewdog --- service/github/diff.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/github/diff.go b/service/github/diff.go index ecb66db9..0bbd04ea 100644 --- a/service/github/diff.go +++ b/service/github/diff.go @@ -35,7 +35,7 @@ func (p *PullRequestDiffService) Diff(ctx context.Context) ([]byte, error) { d, resp, err := p.Cli.PullRequests.GetRaw(ctx, p.Owner, p.Repo, p.PR, opt) if err != nil { if resp != nil && p.FallBackToGitCLI && resp.StatusCode == http.StatusNotAcceptable { - log.Print("reviwedog: fallback to use git command") + log.Print("reviewdog: fallback to use git command") return p.diffUsingGitCommand(ctx) }