=doc Fix wrong scala/java snippet directives #23513
Issue: #23513 Fix inline snippet in stream-io Fix wrong rendering on other pages
This commit is contained in:
parent
c1f247212f
commit
5216c8b403
5 changed files with 11 additions and 16 deletions
|
|
@ -64,7 +64,7 @@ public class StreamTcpDocTest extends AbstractJavaTest {
|
|||
//#echo-server-simple-bind
|
||||
// IncomingConnection and ServerBinding imported from Tcp
|
||||
final Source<IncomingConnection, CompletionStage<ServerBinding>> connections =
|
||||
Tcp.get(system).bind("127.0.0.1", 8889);
|
||||
Tcp.get(system).bind("127.0.0.1", 8888);
|
||||
//#echo-server-simple-bind
|
||||
}
|
||||
{
|
||||
|
|
@ -133,7 +133,7 @@ public class StreamTcpDocTest extends AbstractJavaTest {
|
|||
{
|
||||
//#repl-client
|
||||
final Flow<ByteString, ByteString, CompletionStage<OutgoingConnection>> connection =
|
||||
Tcp.get(system).outgoingConnection("127.0.0.1", 8889);
|
||||
Tcp.get(system).outgoingConnection("127.0.0.1", 8888);
|
||||
//#repl-client
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue