Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
smeyer198 committed Nov 27, 2024
1 parent 078892f commit 1a53770
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ In your program, you can import the `crysl.CrySLParser` and read a set of `.crys
CrySLParser parser = new CrySLParser();
Collection<CrySLRule> rules = parser.parseRulesFromPath("path/to/directory_or_zip_file");

System.out.println("Found " + rules.size() + " for classes:");
System.out.println("Found " + rules.size() + " rules for classes:");
for (CrySLRule rule : rules) {
System.out.println(rule.getClassName());
}
Expand Down

0 comments on commit 1a53770

Please sign in to comment.