Skip to content

Commit

Permalink
plugins/{clang,cppcheck,smatch}: fix typo in a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kdudka committed Oct 19, 2018
1 parent 05d6b0f commit 7ddacd1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion py/plugins/clang.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def handle_args(self, parser, args, props):

props.install_pkgs += ["clang"]

# resolve csclng_path by querying csmock binary
# resolve csclng_path by querying csclng binary
cmd = ["csclng", "--print-path-to-wrap"]
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
(out, err) = p.communicate()
Expand Down
2 changes: 1 addition & 1 deletion py/plugins/cppcheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def handle_args(self, parser, args, props):
--checker CPPCHECK_WARNING \
--event 'cppcheckError|preprocessorErrorDirective|syntaxError'"]

# resolve cscppc_path by querying csmock binary
# resolve cscppc_path by querying cscppc binary
cmd = ["cscppc", "--print-path-to-wrap"]
subproc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
(out, err) = subproc.communicate()
Expand Down
2 changes: 1 addition & 1 deletion py/plugins/smatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def handle_args(self, parser, args, props):

props.install_pkgs += ["smatch"]

# resolve csmatch_path by querying csmock binary
# resolve csmatch_path by querying csmatch binary
cmd = ["csmatch", "--print-path-to-wrap"]
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
(out, err) = p.communicate()
Expand Down

0 comments on commit 7ddacd1

Please sign in to comment.