From c794a5d91c121d19b9a4460e11ccde74075d9d3d Mon Sep 17 00:00:00 2001 From: Giorgio Gallo Date: Sun, 23 Apr 2023 04:17:17 +0200 Subject: [PATCH] fix typo in a comment --- pkg/yqlib/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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