diff --git a/docs/src/main/asciidoc/spring-cloud-stream.adoc b/docs/src/main/asciidoc/spring-cloud-stream.adoc index ec3fc82b8..73e042f5b 100644 --- a/docs/src/main/asciidoc/spring-cloud-stream.adoc +++ b/docs/src/main/asciidoc/spring-cloud-stream.adoc @@ -250,7 +250,7 @@ public class SampleApplication { public Function uppercase() { return value -> { System.out.println("Received: " + value); - return value.toUpperCase() + return value.toUpperCase(); }; } }