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
1 changed files with 1 additions and 1 deletions

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