Skip to content

Commit 48181e4

Browse files
committed
address comments
1 parent 6aae580 commit 48181e4

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

articles/communication-services/quickstarts/rooms/get-started-rooms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ This quickstart helps you get started with Azure Communication Services Rooms. A
6161

6262
## Next steps
6363

64-
You can learn how to [join a rooms call](join-rooms-call.md) ater creating and configuring the room.
64+
You can learn how to [join a rooms call](join-rooms-call.md) after creating and configuring the room.
6565

6666
In this section you learned how to:
6767
> [!div class="checklist"]

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ az extension add --name communication
2929
```
3030

3131
### Sign in to Azure CLI
32-
You need to [sign in to Azure CLI](/cli/azure/authenticate-azure-cli). You can sign in running the ```az login``` command from the terminal and providing your credentials.
32+
You need to [sign in to Azure CLI](/cli/azure/authenticate-azure-cli). You can sign in by running the ```az login``` command from the terminal and providing your credentials.
3333

3434

3535
### Store your connection string in an environment variable
@@ -88,7 +88,7 @@ If you've stored the connection string in environment variables as stated above,
8888
az communication rooms create
8989
```
9090

91-
### Enable PSTN Dial Out Capability for a Room
91+
### Enable PSTN dial out capability for a room
9292
The PSTN dial out can be enabled during `rooms create` by defining the `--pstn-dial-out-enabled` parameter as "True". This capability can also be modified during `rooms update` by specifying the `--pstn-dial-out-enabled` parameter.
9393

9494
```azurecli-interactive

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-call-ios.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ end
4646
4. Open the .xcworkspace with Xcode.
4747

4848

49-
### Request access to the Microphone and Camera
49+
### Request access to the microphone and camera
5050
To access the device's microphone and camera, you need to update your app's Information Property List with an `NSMicrophoneUsageDescription` and `NSCameraUsageDescription`. You set the associated value to a string that will be included in the dialog the system uses to request access from the user.
5151

5252
Right-click the `Info.plist` entry of the project tree and select Open As > Source Code. Add the following lines the top level `<dict>` section, and then save the file.
@@ -199,7 +199,7 @@ struct HomePageView_Previews: PreviewProvider {
199199
}
200200
```
201201

202-
### Authenticate the Client
202+
### Authenticate the client
203203
In order to initialize a CallAgent instance we need a User Access Token which will enable us to join Room calls.
204204

205205
Once you have a token, Add the following code to the `onAppear` callback in `ContentView.swift`. You will need to replace `<USER ACCESS TOKEN>` with a valid user access token for your resource:

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ System.out.println("\nCreated a room with id: " + roomCreated.getRoomId());
186186

187187
Since `rooms` are server-side entities, you may want to keep track of and persist the `roomId` in the storage medium of choice. You can reference the `roomId` to view or update the properties of a `room` object.
188188

189-
### Enable PSTN Dial Out Capability for a Room
189+
### Enable PSTN dial out capability for a room
190190
Each `room` has PSTN dial out disabled by default. The PSTN dial out can be enabled for a `room` at creation, by defining the `pstnDialOutEnabled` parameter as true. This capability may also be modified for a `room` by issuing an update request for the `pstnDialOutEnabled` parameter.
191191

192192
```java

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ console.log("\nCreated a room with id: ", roomId);
150150

151151
Since `rooms` are server-side entities, you may want to keep track of and persist the `roomId` in the storage medium of choice. You can reference the `roomId` to view or update the properties of a `room` object.
152152

153-
### Enable PSTN Dial Out Capability for a Room
153+
### Enable PSTN dial out capability for a room
154154
Each `room` has PSTN dial out disabled by default. The PSTN dial out can be enabled for a `room` at creation, by defining the `pstnDialOutEnabled` parameter as true. This capability may also be modified for a `room` by issuing an update request for the `pstnDialOutEnabled` parameter.
155155

156156
```javascript

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-net.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ Console.WriteLine("\nCreated room with id: " + roomId);
153153

154154
Since `rooms` are server-side entities, you may want to keep track of and persist the `roomId` in the storage medium of choice. You can reference the `roomId` to view or update the properties of a `room` object.
155155

156-
### Enable PSTN Dial Out Capability for a Room
156+
### Enable PSTN dial out capability for a room
157157
Each `room` has PSTN dial out disabled by default. The PSTN dial out can be enabled for a `room` at creation, by defining the `pstnDialOutEnabled` parameter as true. This capability may also be modified for a `room` by issuing an update request for the `pstnDialOutEnabled` parameter.
158158

159159
```csharp

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ except HttpResponseError as ex:
136136

137137
Since `rooms` are server-side entities, you may want to keep track of and persist the `room.id` in the storage medium of choice. You can reference the `id` to view or update the properties of a `room` object.
138138

139-
### Enable PSTN Dial Out Capability for a Room
139+
### Enable PSTN dial out capability for a room
140140
Each `room` has PSTN dial out disabled by default. The PSTN dial out can be enabled for a `room` at creation, by defining the `pstn_dial_out_enabled` parameter as true. This capability may also be modified for a `room` by issuing an update request for the `pstn_dial_out_enabled` parameter.
141141

142142
```python

0 commit comments

Comments
 (0)