From 9fe0b2e21afb166f331098c282aa5de6c96d3253 Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Fri, 11 Dec 2020 00:34:38 -0800 Subject: [PATCH] Fix typo (#547) --- rules/tls.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/tls.go b/rules/tls.go index 554378f..a013788 100644 --- a/rules/tls.go +++ b/rules/tls.go @@ -134,7 +134,7 @@ func (t *insecureConfigTLS) mapVersion(version string) int16 { func (t *insecureConfigTLS) checkVersion(n ast.Node, c *gosec.Context) *gosec.Issue { if t.actualMaxVersion == 0 && t.actualMinVersion >= t.MinVersion { - // no warning is generated since the min version is grater than the secure min version + // no warning is generated since the min version is greater than the secure min version return nil } if t.actualMinVersion < t.MinVersion {