Skip to content

Commit

Permalink
change analyzer name and doc (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandear authored Nov 21, 2023
1 parent ba43f09 commit b7e040a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zerologlint.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
)

var Analyzer = &analysis.Analyzer{
Name: "zerologlinter",
Doc: "finds cases where zerolog methods are not followed by Msg or Send",
Name: "zerologlint",
Doc: "Detects the wrong usage of `zerolog` that a user forgets to dispatch with `Send` or `Msg`",
Run: run,
Requires: []*analysis.Analyzer{
buildssa.Analyzer,
Expand Down

0 comments on commit b7e040a

Please sign in to comment.