From 4555123b7d253baba730bcd0726f89561e6e8e11 Mon Sep 17 00:00:00 2001 From: Ferdinand Jacobs Date: Fri, 20 Dec 2019 21:20:08 +0100 Subject: [PATCH] Fix typo in RSocket docs See gh-19424 --- .../src/main/asciidoc/spring-boot-features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 1890527f01..cb2c6e1ebf 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -3035,7 +3035,7 @@ The following code shows a typical example: } public Mono someRSocketCall(String name) { - return this.requester.route("user").data(name) + return this.rsocketRequester.route("user").data(name) .retrieveMono(User.class); }