Skip to content

Commit

Permalink
updated readme with a better example
Browse files Browse the repository at this point in the history
  • Loading branch information
BasketBandit committed Apr 28, 2019
1 parent ac57326 commit bae8bef
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 @@ -18,7 +18,7 @@ Java wrapper for the OSRS portion of the [RuneScape](https://oldschool.runescape
List<Skill> stats = RuneAPI.getStats(username);

for(Skill skill: stats) {
System.out.println(skill.getName() + " - " + skill.getLevel());
System.out.printf("%s - %,d - %,d - %,d \n", skill.getName(), skill.getRank(), skill.getLevel(), skill.getExperience());
}
```

Expand Down

0 comments on commit bae8bef

Please sign in to comment.