Minor doc fixes

This commit is contained in:
Tenzin Chemi
2021-10-06 22:28:07 +05:30
committed by Oleg Zhurakousky
parent f8a570a2cb
commit bd7302a8ec
2 changed files with 3 additions and 3 deletions

View File

@@ -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

View File

@@ -69,7 +69,7 @@ public class InputDestination extends AbstractDestination {
* <pre>
*
* // 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&lt;byte[]&gt; resultMessage = outputDestination.receive(1000, "upprecase-out-0");
* Message&lt;byte[]&gt; resultMessage = outputDestination.receive(1000, "uppercase-out-0");
* </pre>
*
* @param message message to send