Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix simple typo #8

Merged
merged 1 commit into from Sep 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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