From 0ae7154518e6e9a13a9fa9f53880913989d428c4 Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Mon, 23 Sep 2019 13:09:06 +0100 Subject: [PATCH] Fix checkstyle violation --- src/docs/asciidoc/rsocket.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/asciidoc/rsocket.adoc b/src/docs/asciidoc/rsocket.adoc index 844936c229..e449e7f049 100644 --- a/src/docs/asciidoc/rsocket.adoc +++ b/src/docs/asciidoc/rsocket.adoc @@ -50,7 +50,7 @@ transparently through RSocket across the network. === The Protocol One of the benefits of RSocket is that it has a well defined behavior on the wire and an -easy to read http://rsocket.io/docs/Protocol[specification] along with some protocol +easy to read https://rsocket.io/docs/Protocol[specification] along with some protocol https://github.com/rsocket/rsocket/tree/master/Extensions[extensions]. Therefore it is a good idea to read the spec, independent of language implementations and higher level framework APIs. This section provides a succinct overview to establish some context. @@ -177,7 +177,7 @@ This is the most basic way to connect with default settings: .connectTcp("localhost", 7000); Mono requesterMono = RSocketRequester.builder() - .connectWebSocket(URI.create("http://example.org:8080/rsocket")); + .connectWebSocket(URI.create("https://example.org:8080/rsocket")); ---- The above is deferred. To actually connect and use the requester: