Skip to content

Commit

Permalink
fix #46
Browse files Browse the repository at this point in the history
  • Loading branch information
ix0rai committed Apr 7, 2024
1 parent ab64e6f commit 1321cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/quiltmc/config/api/Constraint.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public Optional<String> test(T value) {

@Override
public String getRepresentation() {
return "range[" + this.min + ", " + this.max + "]";
return "range: " + this.min + " - " + this.max;
}
}

Expand Down

0 comments on commit 1321cc1

Please sign in to comment.