From 64ab600113f912473e047d7340b5bd145cb82ba0 Mon Sep 17 00:00:00 2001 From: buildmaster Date: Fri, 17 Jan 2020 03:06:04 +0000 Subject: [PATCH] Sync docs from master to gh-pages --- reference/html/functional.html | 2 +- reference/html/spring-cloud-function.html | 132 +++++++++++++++++++++- 2 files changed, 131 insertions(+), 3 deletions(-) diff --git a/reference/html/functional.html b/reference/html/functional.html index f5d172d4b..cb448e455 100644 --- a/reference/html/functional.html +++ b/reference/html/functional.html @@ -204,7 +204,7 @@ public class DemoApplication implements Function<String, String> { } @Override - public String uppercase(String value) { + public String apply(String value) { return value.toUpperCase(); } diff --git a/reference/html/spring-cloud-function.html b/reference/html/spring-cloud-function.html index ffbedb992..d42f76de6 100644 --- a/reference/html/spring-cloud-function.html +++ b/reference/html/spring-cloud-function.html @@ -111,7 +111,11 @@ $(addBlockSwitches);
  • Standalone Web Applications
  • Standalone Streaming Applications
  • -
  • Deploying a Packaged Function
  • +
  • Deploying a Packaged Function + +
  • Functional Bean Definitions