mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-16 12:12:06 +01:00
Merge branch 'master' of github.com:igniterealtime/Smack
This commit is contained in:
commit
221671f9c5
2 changed files with 3 additions and 3 deletions
|
@ -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/
|
||||
|
|
|
@ -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