1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2025-09-10 10:49:41 +02:00

Update/Edit documentation

This commit is contained in:
Jesus Fuentes 2018-04-01 09:12:31 -05:00
parent a9ca1a0989
commit fba36dbff6
2 changed files with 4 additions and 5 deletions

View file

@ -19,8 +19,7 @@ group chat room, address a new message to the user and set the room name
appropriately, as in the following code example:
```
Message message = new Message("user@chat.example.com");
message.setBody("Join me for a group chat!");
Message message = new Message("user@chat.example.com", "Join me for a group chat!");
message.addExtension(new GroupChatInvitation("room@chat.example.com"));
con.sendStanza(message);
```