Skip to content

Commit 5f98966

Browse files
authored
Update get-started.md
1 parent 40a2ff3 commit 5f98966

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/get-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ The RSocket RPC compiler generates a client as well as a server. The client impl
270270
```java
271271
RSocket rSocket = RSocketFactory
272272
.connect()
273-
.transport(TcpClientTransport.create(8801))
273+
.transport(TcpClientTransport.create(8081))
274274
.start()
275275
.block();
276276
SimpleServiceClient serviceClient = new SimpleServiceClient(rSocket);
@@ -296,7 +296,7 @@ RSocketFactory.receive()
296296
}
297297
});
298298
})
299-
.transport(TcpServerTransport.create(8801))
299+
.transport(TcpServerTransport.create(8081))
300300
.start()
301301
.block();
302302
```
@@ -320,4 +320,4 @@ The above example streams in 11 items to a server. The server receives the strea
320320

321321
## Next Steps
322322

323-
See `rsocket-rpc-examples` for more examples and use-cases.
323+
See `rsocket-rpc-examples` for more examples and use-cases.

0 commit comments

Comments
 (0)