Skip to content

Commit acf50c3

Browse files
committed
fix more javadoc warnings
1 parent 2c95970 commit acf50c3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/org/spongepowered/api/command/exception/ArgumentParseException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public String annotatedPosition() {
108108
source = source.substring(0, 77) + "...";
109109
}
110110
}
111-
return source + "\n" + Strings.repeat(" ", position) + "^";
111+
return source + "\n" + " ".repeat(position) + "^";
112112
}
113113

114114
/**

src/main/java/org/spongepowered/api/world/generation/config/noise/SlideConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ static SlideConfig of(final double target, final int size, final int offset) {
3434

3535
/**
3636
* The target value of the curve.
37-
* <p>See {@link NoiseConfig#topConfig()} and {@link NoiseConfig#bottomConfig()} for its effect.<p>
37+
* <p>See {@link NoiseConfig#topConfig()} and {@link NoiseConfig#bottomConfig()} for its effect.</p>
3838
* <p>Higher values produce larger effects.</p>
3939
*
4040
* @return the target value

0 commit comments

Comments
 (0)