We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4392ad0 commit d79f242Copy full SHA for d79f242
main.go
@@ -7,9 +7,12 @@ import (
7
pmy "github.com/relastle/pmy/src"
8
)
9
10
+var (
11
+ bufferLeft string
12
+ bufferRight string
13
+)
14
+
15
func main() {
- var bufferLeft string
- var bufferRight string
16
flag.StringVar(&bufferLeft, "bufferLeft", "", "")
17
flag.StringVar(&bufferRight, "bufferRight", "", "")
18
flag.Parse()
src/core.go
@@ -8,7 +8,7 @@ import (
"strings"
-// ccheckJq checks whether `jq` command is available
+// checkJq checks whether `jq` command is available
func checkJq() bool {
_, err := exec.LookPath("jq")
if err != nil {
0 commit comments