Skip to content

Commit

Permalink
Fixed syntax error in example
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias1590 committed Dec 8, 2021
1 parent 04bad90 commit 0838065
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 @@ -74,7 +74,7 @@ An example how to use a `ListTag`:
```java
ListTag<FloatTag> fl = new ListTag<>(FloatTag.class);

fl.add(new FloatTag(1.234f);
fl.add(new FloatTag(1.234f));
fl.addFloat(5.678f);
```

Expand Down

0 comments on commit 0838065

Please sign in to comment.