diff --git a/spring-cloud-stream/src/test/java/org/springframework/cloud/stream/binder/test/FunctionBindingTestUtils.java b/spring-cloud-stream/src/test/java/org/springframework/cloud/stream/binder/test/FunctionBindingTestUtils.java index b050c1c3f..ff671a482 100644 --- a/spring-cloud-stream/src/test/java/org/springframework/cloud/stream/binder/test/FunctionBindingTestUtils.java +++ b/spring-cloud-stream/src/test/java/org/springframework/cloud/stream/binder/test/FunctionBindingTestUtils.java @@ -36,7 +36,7 @@ import org.springframework.messaging.MessageChannel; /** * A utility class to assist with just-in-time bindings. - * It is intended for internal framework testing and is NOTfor public use. Breaking changes are likely!!! + * It is intended for internal framework testing and is NOT for public use. Breaking changes are likely!!! * * @author Oleg Zhurakousky * @since 3.0.2 diff --git a/spring-cloud-stream/src/test/java/org/springframework/cloud/stream/binder/test/InputDestination.java b/spring-cloud-stream/src/test/java/org/springframework/cloud/stream/binder/test/InputDestination.java index c3817c3f0..27d562c7d 100644 --- a/spring-cloud-stream/src/test/java/org/springframework/cloud/stream/binder/test/InputDestination.java +++ b/spring-cloud-stream/src/test/java/org/springframework/cloud/stream/binder/test/InputDestination.java @@ -69,7 +69,7 @@ public class InputDestination extends AbstractDestination { *
 	 *
 	 * // assume the following properties
-	 * "--spring.cloud.fuunction.definition=uppercase",
+	 * "--spring.cloud.function.definition=uppercase",
 	 * "--spring.cloud.stream.bindings.uppercase-in-0.destination=upper",
 	 * "--spring.cloud.stream.bindings.uppercase-out-0.destination=upperout"
 	 *
@@ -79,7 +79,7 @@ public class InputDestination extends AbstractDestination {
 	 *
 	 * // if 'destination' property is not provided for both input and output
 	 * inputDestination.send(message, "uppercase-in-0");
-	 * Message<byte[]> resultMessage = outputDestination.receive(1000, "upprecase-out-0");
+	 * Message<byte[]> resultMessage = outputDestination.receive(1000, "uppercase-out-0");
 	 * 
* * @param message message to send