mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-16 20:22:05 +01:00
Merge pull request #174 from thakkaryash94/patch-1
Missing comma between password and serviceName
This commit is contained in:
commit
ff1ab051f5
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ server. Below are code examples for making a connection:
|
|||
|
||||
```
|
||||
// Create a connection to the jabber.org server.
|
||||
AbstractXMPPConnection conn1 = **new** XMPPTCPConnection("username", "password" "jabber.org");
|
||||
AbstractXMPPConnection conn1 = **new** XMPPTCPConnection("username", "password", "jabber.org");
|
||||
conn1.connect();
|
||||
|
||||
// Create a connection to the jabber.org server on a specific port.
|
||||
|
|
Loading…
Reference in a new issue