Skip to content
This repository has been archived by the owner on Oct 20, 2018. It is now read-only.

Commit

Permalink
Merge pull request #37 from kpm1985/patch-1
Browse files Browse the repository at this point in the history
Fix for #36 - Error Message Uses Incorrect Argument
  • Loading branch information
keith-turner authored Jan 13, 2018
2 parents 7e301ab + 184cd71 commit 64bf7e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/phrasecount/cmd/Load.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static void main(String[] args) throws Exception {
File[] files = new File(args[1]).listFiles();

if (files == null) {
System.out.println("Text file dir does not exist: " + args[0]);
System.out.println("Text file dir does not exist: " + args[1]);
} else {
for (File txtFile : files) {
if (txtFile.getName().endsWith(".txt")) {
Expand Down

0 comments on commit 64bf7e5

Please sign in to comment.