Skip to content

Commit 8e4825c

Browse files
authored
Update README.md
1 parent bad88a8 commit 8e4825c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ class Main {
5353
public static void main(final String[] args) throws InterruptedException, JsonProcessingException {
5454
final ReactiveWebSocketClient client = new ReactiveWebSocketClient();
5555

56-
final Channel channel = Channel.builder().
57-
name(ChannelName.TICKER)
56+
final Channel channel = Channel.builder()
57+
.name(ChannelName.TICKER)
5858
.markets(Set.of("ETH-EUR", "BTC-EUR", "POLYX-EUR", "APT-EUR", "VANRY-EUR"))
5959
.build();
6060

@@ -97,8 +97,8 @@ class Main {
9797
// pass the credentials
9898
final ReactiveWebSocketClient client = new ReactiveWebSocketClient(credentials);
9999

100-
final Channel channel = Channel.builder().
101-
name(ChannelName.ACCOUNT)
100+
final Channel channel = Channel.builder()
101+
.name(ChannelName.ACCOUNT)
102102
.markets(Set.of("ETH-EUR", "BTC-EUR"))
103103
.build();
104104

@@ -137,8 +137,8 @@ class Main {
137137
// pass the proxy
138138
final ReactiveWebSocketClient client = new ReactiveWebSocketClient(proxy);
139139

140-
final Channel channel = Channel.builder().
141-
name(ChannelName.TICKER)
140+
final Channel channel = Channel.builder()
141+
.name(ChannelName.TICKER)
142142
.markets(Set.of("ETH-EUR", "BTC-EUR", "POLYX-EUR", "APT-EUR", "VANRY-EUR"))
143143
.build();
144144

@@ -233,4 +233,4 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
233233
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
234234
SOFTWARE.
235235

236-
---
236+
---

0 commit comments

Comments
 (0)