1
0
mirror of https://github.com/securego/gosec.git synced 2025-11-23 22:15:04 +02:00

Fix typos in comments and rulelist (#256)

This commit is contained in:
Oleksandr Redko
2018-10-11 15:45:31 +03:00
committed by Cosmin Cojocar
parent e0a150bfa3
commit 3116b07de4
12 changed files with 18 additions and 18 deletions

View File

@@ -78,7 +78,7 @@ func (c Config) GetGlobal(option string) (string, error) {
}
// SetGlobal associates a value with a global configuration ooption
// SetGlobal associates a value with a global configuration option
func (c Config) SetGlobal(option, value string) {
if globals, ok := c[Globals]; ok {
if settings, ok := globals.(map[string]string); ok {