From a4223da22a8f61ea9dcc9a31771fc9608918e054 Mon Sep 17 00:00:00 2001 From: Weilin Shi <934587911@qq.com> Date: Wed, 28 Jul 2021 21:26:53 +0800 Subject: [PATCH] fix typo and lint --- README.md | 2 +- captcha.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 14ff518..9578684 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ func handle(w http.ResponseWriter, r *http.Request) { ## Compatibility -This package uses embed package from Go 1.16. If for some reason you have to use pre 1.16 version of Go, reference pre 1.4 version of this module in your go.mod. +This package uses embed package from Go 1.16. If for some reasons you have to use pre 1.16 version of Go, reference pre 1.4 version of this module in your go.mod. ## Contributing If your found a bug, please contribute! diff --git a/captcha.go b/captcha.go index fb7e762..56b3de4 100644 --- a/captcha.go +++ b/captcha.go @@ -3,7 +3,7 @@ package captcha import ( "bytes" - _ "embed" + _ "embed" // embed font "image" "image/color" "image/draw"