diff --git a/pkg/yqlib/utils.go b/pkg/yqlib/utils.go index a1afff27..d800e3b1 100644 --- a/pkg/yqlib/utils.go +++ b/pkg/yqlib/utils.go @@ -15,7 +15,7 @@ func readStream(filename string) (io.Reader, error) { reader = bufio.NewReader(os.Stdin) } else { // ignore CWE-22 gosec issue - that's more targeted for http based apps that run in a public directory, - // and ensuring that it's not possible to give a path to a file outside thar directory. + // and ensuring that it's not possible to give a path to a file outside that directory. file, err := os.Open(filename) // #nosec if err != nil { return nil, err