Fix typo in RSocket docs

See gh-19424
This commit is contained in:
Ferdinand Jacobs
2019-12-20 21:20:08 +01:00
committed by Brian Clozel
parent ea00ab9919
commit 4555123b7d

View File

@@ -3035,7 +3035,7 @@ The following code shows a typical example:
}
public Mono<User> someRSocketCall(String name) {
return this.requester.route("user").data(name)
return this.rsocketRequester.route("user").data(name)
.retrieveMono(User.class);
}