Skip to content

Commit b2a5d2a

Browse files
committed
address acrolinx issues for rooms.
1 parent 7306f08 commit b2a5d2a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-az-cli.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ You can configure the `AZURE_COMMUNICATION_CONNECTION_STRING` environment variab
4242
setx AZURE_COMMUNICATION_STRING "<yourConnectionString>"
4343
```
4444

45-
After you add the environment variable, you may need to restart any running programs that will need to read the environment variable, including the console window. For example, if you are using Visual Studio as your editor, restart Visual Studio before running the example.
45+
After you add the environment variable, you may need to restart any running programs that will need to read the environment variable, including the console window. For example, if you're using Visual Studio as your editor, restart Visual Studio before running the example.
4646

4747
##### [macOS](#tab/unix)
4848

@@ -82,7 +82,7 @@ az communication rooms create --presenter-participants "<participantId>" --consu
8282
- Use `<validFrom>` optionally to specify the timestamp when the room is open for joining, in ISO8601 format, ex: 2022-07-14T10:21.
8383
- Use `<validUntil>` optionally to specify the timestamp when the room can no longer be joined, in ISO8601 format, ex: 2022-07-14T10:21.
8484

85-
If you have stored the connection string in environment variables as stated above, you won't need to pass them to the command.
85+
If you've stored the connection string in environment variables as stated above, you won't need to pass them to the command.
8686

8787
```azurecli-interactive
8888
az communication rooms create
@@ -93,7 +93,7 @@ az communication rooms create
9393

9494
### Get the rooms
9595

96-
The `rooms get` command returns the attributes of an exisiting room.
96+
The `rooms get` command returns the attributes of an existing room.
9797

9898
```azurecli-interactive
9999
az communication rooms get --room "<roomId>"
@@ -129,8 +129,8 @@ You can update the timestamp of a room. Before calling the `room update` command
129129
az communication rooms update --validFrom "<validFrom>" --validUntil "<validUntil>" --room "<roomId>"
130130
```
131131

132-
- Replace `<validFrom>` with the timestamp in ISO8601 format, ex: 2022-07-14T10:21, to specify when the room is open for joining. Should be used together with --valid-until.
133-
- Replace `<validUntil>` with the timestamp in ISO8601 format, ex: 2022-07-14T10:21, to specify when the room can no longer be joined. Should be used together with --valid-from.
132+
- Replace `<validFrom>` with the timestamp in ISO8601 format, ex: 2022-07-14T10:21, to specify when the room is open for joining. Should be used together with `--valid-until`.
133+
- Replace `<validUntil>` with the timestamp in ISO8601 format, ex: 2022-07-14T10:21, to specify when the room can no longer be joined. Should be used together with `--valid-from`.
134134
- Replace `<roomId>` with your room ID.
135135

136136

0 commit comments

Comments
 (0)