From 406d433becc8573afb9426e55ac20f6282427fa2 Mon Sep 17 00:00:00 2001 From: sivchari Date: Mon, 6 Dec 2021 10:15:22 +0900 Subject: [PATCH] fix description --- README.md | 2 +- containedctx.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d1ad2ad..8f40499 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![test_and_lint](https://github.com/sivchari/containedctx/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/sivchari/containedctx/actions/workflows/ci.yml) -containedctx detects is a linter that detects struct contained context.Context field +containedctx is a linter that detects struct contained context.Context field ## Instruction diff --git a/containedctx.go b/containedctx.go index 54f3eab..5a2c2da 100644 --- a/containedctx.go +++ b/containedctx.go @@ -8,7 +8,7 @@ import ( "golang.org/x/tools/go/ast/inspector" ) -const doc = "containedctx detects is a linter that detects struct contained context.Context field" +const doc = "containedctx is a linter that detects struct contained context.Context field" // Analyzer is the contanedctx analyzer var Analyzer = &analysis.Analyzer{