Skip to content

Commit

Permalink
Merge pull request #213 from TheRealAgentK/master
Browse files Browse the repository at this point in the history
Fixed wrong parameter in error message
  • Loading branch information
ryaneberly authored Nov 24, 2016
2 parents e6dc5e6 + 8441852 commit f80b9e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/cflint/main/CFLintMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ private void display(final String text) {

private boolean isValid() {
if (folder.isEmpty() && !stdIn) {
System.err.println("Set -scanFolder or -stdin");
System.err.println("Set -folder or -stdin");
return false;
}
return true;
Expand Down

0 comments on commit f80b9e0

Please sign in to comment.