Fix missing space in documentation.

This commit is contained in:
Florian Nücke
2022-01-26 00:12:37 +01:00
parent 929f13d240
commit 79ab0f08e0
2 changed files with 6 additions and 6 deletions

View File

@@ -122,7 +122,7 @@ public final class RedstoneInterfaceBlockEntity extends BlockEntity implements N
.description("Get the current redstone level received on the specified side. " +
"Note that if the current output level on the specified side is not " +
"zero, this will affect the measured level.\n" +
"Sides may be specified by name or zero-based index. Please note that" +
"Sides may be specified by name or zero-based index. Please note that " +
"the side depends on the orientation of the device.")
.returnValueDescription("the current received level on the specified side.")
.parameterDescription(SIDE, "the side to read the input level from.");
@@ -130,13 +130,13 @@ public final class RedstoneInterfaceBlockEntity extends BlockEntity implements N
visitor.visitCallback(GET_REDSTONE_OUTPUT)
.description("Get the current redstone level transmitted on the specified side. " +
"This will return the value last set via setRedstoneOutput().\n" +
"Sides may be specified by name or zero-based index. Please note that" +
"Sides may be specified by name or zero-based index. Please note that " +
"the side depends on the orientation of the device.")
.returnValueDescription("the current transmitted level on the specified side.")
.parameterDescription(SIDE, "the side to read the output level from.");
visitor.visitCallback(SET_REDSTONE_OUTPUT)
.description("Set the new redstone level transmitted on the specified side.\n" +
"Sides may be specified by name or zero-based index. Please note that" +
"Sides may be specified by name or zero-based index. Please note that " +
"the side depends on the orientation of the device.")
.parameterDescription(SIDE, "the side to write the output level to.")
.parameterDescription(VALUE, "the output level to set, will be clamped to [0, 15].");