Skip to content

Commit

Permalink
fix simple typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Leskis committed Sep 26, 2022
1 parent 2f300bb commit da9cd33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -3,7 +3,7 @@

# contextcheck

`contextcheck` is a static analysis tool, it is used to check the function whether use a non-inherited context, which will result in a broken call link.
`contextcheck` is a static analysis tool, it is used to check whether the function uses a non-inherited context, which will result in a broken call link.

For example:

Expand Down
2 changes: 1 addition & 1 deletion contextcheck.go
Expand Up @@ -24,7 +24,7 @@ var pkgprefix string
func NewAnalyzer(cfg Configuration) *analysis.Analyzer {
analyzer := &analysis.Analyzer{
Name: "contextcheck",
Doc: "check the function whether use a non-inherited context",
Doc: "check whether the function uses a non-inherited context",
Run: NewRun(nil, cfg.DisableFact),
Requires: []*analysis.Analyzer{
buildssa.Analyzer,
Expand Down

0 comments on commit da9cd33

Please sign in to comment.