1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-06-17 00:54:52 +02:00

Fixed typo.

This commit is contained in:
Guus der Kinderen 2018-02-24 14:02:10 +01:00 committed by GitHub
parent 42c2e4d077
commit 1b58581ca0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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();
```