From 1b58581ca0353ce05cd07f6975c2884d84ce98e4 Mon Sep 17 00:00:00 2001 From: Guus der Kinderen Date: Sat, 24 Feb 2018 14:02:10 +0100 Subject: [PATCH] Fixed typo. --- documentation/gettingstarted.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/gettingstarted.md b/documentation/gettingstarted.md index 2698ba811..2a0017055 100644 --- a/documentation/gettingstarted.md +++ b/documentation/gettingstarted.md @@ -47,7 +47,7 @@ server. Below are code examples for making a connection: ``` // Create a connection and login to the example.org XMPP service. -AbstractXMPPConnection connection = new XMPPTCPConnection("username", "password" "example.org"); +AbstractXMPPConnection connection = new XMPPTCPConnection("username", "password", "example.org"); conn1.connect().login(); ```