Fix invalid type name in RSocket code example

See gh-31091
This commit is contained in:
Andreas Ahlenstorf
2023-08-22 16:47:55 +02:00
committed by Stephane Nicoll
parent 229b4782ee
commit 452b2df849

View File

@@ -1023,7 +1023,7 @@ Two, create a proxy that will perform the declared RSocket exchanges:
RSocketRequester requester = ... ;
RSocketServiceProxyFactory factory = RSocketServiceProxyFactory.builder(requester).build();
RepositoryService service = factory.createClient(RadarService.class);
RadarService service = factory.createClient(RadarService.class);
----