Merge branch 'master' of github.com:igniterealtime/Smack

This commit is contained in:
Florian Schmaus 2017-09-29 17:36:08 +02:00
commit 221671f9c5
2 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ More information are provided by the [Overview](documentation/overview.md).
Getting started
---------------
Start with having a look at the **[Docmentation]** and the **[Javadoc]**.
Start with having a look at the **[Documentation]** and the **[Javadoc]**.
Instructions how to use Smack in your Java or Android project are provided in the [Smack 4.2 Readme and Upgrade Guide](https://github.com/igniterealtime/Smack/wiki/Smack-4.2-Readme-and-Upgrade-Guide).
@ -85,5 +85,5 @@ of the biggest and most active Open Source communities.
[XMPP (Jabber)]: http://xmpp.org/
[Smack Developers Forum]: http://community.igniterealtime.org/community/developers/smack
[Smack Users Forum]: https://community.igniterealtime.org/community/support/smack_users
[Docmentation]: https://download.igniterealtime.org/smack/docs/latest/documentation/
[Documentation]: https://download.igniterealtime.org/smack/docs/latest/documentation/
[Javadoc]: https://download.igniterealtime.org/smack/docs/latest/javadoc/

View File

@ -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.