Skip to content

Commit

Permalink
Update description
Browse files Browse the repository at this point in the history
  • Loading branch information
symphony-jean-michael committed Sep 2, 2022
1 parent ca41bfe commit 82229d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/context/ref/ChatRoom.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ hide_title: true
---
# `ChatRoom`

Reference to a chat room (which could be used later to send a message to the room).
Reference to the chat room(s) (which could be used later to send a message to the room(s)).

## Type

Expand Down Expand Up @@ -45,9 +45,9 @@ const chatRoom = {
const intentResolution = await fdc3.raiseIntent("StartChat", context);

try {
const chatRoom = await intentResolution.getResult():
const chatRooms = await intentResolution.getResult():
} catch (error) {
//chat room was not created...
//chat room were not created...
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const initSettings = {
}

const resolution = fdc3.raiseIntent('StartChat', initSettings);
const chatRoomRefs = await resolution.getResult();
const chatRooms = await resolution.getResult();
```

## See Also
Expand Down

0 comments on commit 82229d9

Please sign in to comment.