Browse Source

Fix invalid type name in RSocket code example

See gh-31091
pull/31496/head
Andreas Ahlenstorf 1 year ago committed by Stephane Nicoll
parent
commit
452b2df849
  1. 2
      framework-docs/modules/ROOT/pages/rsocket.adoc

2
framework-docs/modules/ROOT/pages/rsocket.adoc

@ -1023,7 +1023,7 @@ Two, create a proxy that will perform the declared RSocket exchanges: @@ -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);
----

Loading…
Cancel
Save