Skip to content

Commit

Permalink
Fix checkstyle in javadocs
Browse files Browse the repository at this point in the history
such fun
  • Loading branch information
shedaniel committed Aug 12, 2024
1 parent 97c4c62 commit 67d90b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/net/fabricmc/loom/util/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
* A simple version class that can be used to compare versions.
* This class allows for versions that are not strictly following the semver specification,
* but are still allowed in the context of gradle versioning.
* <p>
* This class is intentionally very flexible and does not enforce any specific versioning scheme,
*
* <p>This class is intentionally very flexible and does not enforce any specific versioning scheme,
* and should be very similar to the versioning used by gradle itself.
*/
public record Version(int major, int minor, int micro, int patch, @Nullable String qualifier) implements Comparable<Version> {
Expand Down

0 comments on commit 67d90b2

Please sign in to comment.