Skip to content

Commit 15254f8

Browse files
committed
Fix Javadoc typos in TypeDiff and DataVersion
- Remove stray 'f' character in TypeDiff.removedFields() Javadoc - Fix garbled text in DataVersion.compareTo() Javadoc Fixes #175, Fixes #132 Signed-off-by: Evan Sarkar <evan.official666@gmail.com>
1 parent 61ccff2 commit 15254f8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

  • aether-datafixers-api/src/main/java/de/splatgames/aether/datafixers/api
  • aether-datafixers-schema-tools/src/main/java/de/splatgames/aether/datafixers/schematools/diff

aether-datafixers-api/src/main/java/de/splatgames/aether/datafixers/api/DataVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public int getVersion() {
135135
* }</pre>
136136
*
137137
* @param o the data version to compare against; must not be {@code null}
138-
* @return a negative integer if this version is less than the specified version, zero if they are equal, or a al,
138+
* @return a negative integer if this version is less than the specified version, zero if they are equal,
139139
* or a positive integer if this version is greater than the specified version
140140
* @throws NullPointerException if the specified data version is {@code null}
141141
*/

aether-datafixers-schema-tools/src/main/java/de/splatgames/aether/datafixers/schematools/diff/TypeDiff.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ public List<FieldDiff> addedFields() {
199199

200200
/**
201201
* Returns only the removed fields.
202-
*f
202+
*
203203
* @return a list of field diffs with kind REMOVED, never {@code null}
204204
*/
205205
@NotNull

0 commit comments

Comments
 (0)