Skip to content

Commit cb82945

Browse files
authored
Merge pull request #291796 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 412dc2c + e15151a commit cb82945

File tree

137 files changed

+219
-217
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+219
-217
lines changed

articles/communication-services/quickstarts/call-automation/includes/quickstart-make-an-outbound-call-using-callautomation-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ if (parsedEvent is RecognizeCompleted recognizeCompleted) {
196196

197197
// If choice is detected by phrase, choiceResult.RecognizedPhrase will have the phrase detected,
198198
// If choice is detected using dtmf tone, phrase will be null
199-
logger.LogInformation("Recognize completed succesfully, labelDetected={labelDetected}, phraseDetected={phraseDetected}", labelDetected, phraseDetected);
199+
logger.LogInformation("Recognize completed successfully, labelDetected={labelDetected}, phraseDetected={phraseDetected}", labelDetected, phraseDetected);
200200

201201
var textToPlay = labelDetected.Equals(ConfirmChoiceLabel, StringComparison.OrdinalIgnoreCase) ? ConfirmedText : CancelText;
202202

articles/communication-services/quickstarts/chat/includes/chat-swift.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Open the workspace `ChatQuickstart.xcworkspace` in Xcode, and then open `ViewCon
5858

5959
In this quickstart, you add your code to `viewController`, and view the output in the Xcode console. This quickstart doesn't address building a user interface in iOS.
6060

61-
At the top of `viewController.swift`, import the `AzureCommunication` and `AzureCommunicatonChat` libraries:
61+
At the top of `viewController.swift`, import the `AzureCommunication` and `AzureCommunicationChat` libraries:
6262

6363
```
6464
import AzureCommunicationCommon

articles/communication-services/quickstarts/chat/includes/meeting-interop-windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ private const string connectionString_ = "";
6363
6464
```csharp
6565
/// <summary>
66-
/// Background task that keeps polling for chat messages while the call connection is stablished
66+
/// Background task that keeps polling for chat messages while the call connection is established
6767
/// </summary>
6868
private async Task StartPollingForChatMessages()
6969
{

articles/communication-services/quickstarts/email/add-azure-managed-domains.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Before provisioning an Azure Managed Domain, review the following table to decid
4545

4646
### Service limits
4747

48-
Both Azure managed domains and Custom domains are subject to service limits. Service limits include failure, rate, and size limits. For more informations, see [Service limits for Azure Communication Services > Email](../../concepts/service-limits.md#email).
48+
Both Azure managed domains and Custom domains are subject to service limits. Service limits include failure, rate, and size limits. For more information, see [Service limits for Azure Communication Services > Email](../../concepts/service-limits.md#email).
4949

5050
## Sender authentication for Azure Managed Domain
5151

articles/communication-services/quickstarts/email/add-custom-verified-domains.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Before provisioning a custom email domain, review the following table to decide
4444

4545
### Service limits
4646

47-
Both Azure managed domains and Custom domains are subject to service limits. Service limits include failure, rate, and size limits. For more informations, see [Service limits for Azure Communication Services > Email](../../concepts/service-limits.md#email).
47+
Both Azure managed domains and Custom domains are subject to service limits. Service limits include failure, rate, and size limits. For more information, see [Service limits for Azure Communication Services > Email](../../concepts/service-limits.md#email).
4848

4949
## Change MailFrom and FROM display names for custom domains
5050

articles/communication-services/quickstarts/email/includes/manage-suppression-list-net.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,23 +59,23 @@ string suppressionListResourceName = "<your-suppression-list-resource-name>";
5959
ResourceIdentifier suppressionListResourceId = SuppressionListResource.CreateResourceIdentifier(subscriptionId, resourceGroupName, emailServiceName, domainResourceName, suppressionListResourceName);
6060
SuppressionListResource suppressionListResource = client.GetSuppressionListResource(suppressionListResourceId);
6161

62-
SuppressionListResourceData suppressiontListData = new SuppressionListResourceData()
62+
SuppressionListResourceData suppressionListData = new SuppressionListResourceData()
6363
{
6464
ListName = "<your-sender-username>", // Should match the sender username of the MailFrom address you would like to suppress emails from
6565
};
6666

67-
suppressionListResource.Update(WaitUntil.Completed, suppressiontListData);
67+
suppressionListResource.Update(WaitUntil.Completed, suppressionListData);
6868
```
6969

7070
If you would like to suppress emails from all the sender usernames in particular domain, you can pass in an empty string for the list name.
7171

7272
```csharp
73-
SuppressionListResourceData suppressiontListData = new SuppressionListResourceData()
73+
SuppressionListResourceData suppressionListData = new SuppressionListResourceData()
7474
{
7575
ListName = "",
7676
};
7777

78-
suppressionListResource.Update(WaitUntil.Completed, suppressiontListData);
78+
suppressionListResource.Update(WaitUntil.Completed, suppressionListData);
7979
```
8080

8181
## Add an address to a suppression list
@@ -89,8 +89,8 @@ To add multiple addresses to the suppression list, you need to repeat this code
8989
```csharp
9090
string suppressionListAddressId = "<your-suppression-list-address-id>";
9191

92-
ResourceIdentifier suppresionListAddressResourceId = SuppressionListAddressResource.CreateResourceIdentifier(subscriptionId, resourceGroupName, emailServiceName, domainResourceName, suppressionListResourceName, suppressionListAddressId);
93-
SuppressionListAddressResource suppressionListAddressResource = client.GetSuppressionListAddressResource(suppresionListAddressResourceId);
92+
ResourceIdentifier suppressionListAddressResourceId = SuppressionListAddressResource.CreateResourceIdentifier(subscriptionId, resourceGroupName, emailServiceName, domainResourceName, suppressionListResourceName, suppressionListAddressId);
93+
SuppressionListAddressResource suppressionListAddressResource = client.GetSuppressionListAddressResource(suppressionListAddressResourceId);
9494

9595
SuppressionListAddressResourceData suppressionListAddressData = new SuppressionListAddressResourceData()
9696
{

articles/communication-services/quickstarts/email/includes/send-email-java.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ catch (Exception exception)
260260

261261
## [Async Client](#tab/async-client)
262262

263-
Calling `beginSend` on the async client returns a `PollerFlux` object to which you can subscribe. The callbacks defined in the subscribe method will be triggered once the email sending opertion is complete. **Note that the initial request to send an email will not be sent until a subscriber is set up.**
263+
Calling `beginSend` on the async client returns a `PollerFlux` object to which you can subscribe. The callbacks defined in the subscribe method will be triggered once the email sending operation is complete. **Note that the initial request to send an email will not be sent until a subscriber is set up.**
264264

265265
```java
266266
Duration MAIN_THREAD_WAIT_TIME = Duration.ofSeconds(30);
@@ -278,7 +278,7 @@ executorService.submit(() -> {
278278
System.out.printf("Successfully sent the email (operation id: %s)\n", response.getValue().getId());
279279
}
280280
else {
281-
// The operation ID can be retrieved as soon as the first response is recieved from the PollerFlux.
281+
// The operation ID can be retrieved as soon as the first response is received from the PollerFlux.
282282
System.out.println("Email send status: " + response.getStatus() + ", operation id: " + response.getValue().getId());
283283
}
284284
},
@@ -289,7 +289,7 @@ executorService.submit(() -> {
289289
});
290290

291291
// In a real application, you might have a mechanism to keep the main thread alive.
292-
// For this sample we will keep the main thread alive for 30 seconds to make sure the child thread has time to recieve the SUCCESSFULLY_COMPLETED status.
292+
// For this sample we will keep the main thread alive for 30 seconds to make sure the child thread has time to receive the SUCCESSFULLY_COMPLETED status.
293293
try {
294294
Thread.sleep(MAIN_THREAD_WAIT_TIME.toMillis());
295295
} catch (InterruptedException e) {

articles/communication-services/quickstarts/email/includes/try-send-email.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ To send a message to a recipient, and to specify the message subject and body,
3232

3333
2. Select one of the verified domains from drop-down.
3434

35-
:::image type="content" source="../media/try-email-domains-selected-domain.png" alt-text="Screenshot that shows the verfied domain from drop-down." lightbox="../media/try-email-domains-select.png":::
35+
:::image type="content" source="../media/try-email-domains-selected-domain.png" alt-text="Screenshot that shows the verified domain from drop-down." lightbox="../media/try-email-domains-select.png":::
3636

3737
3. Compose the email to send
3838
- Enter Recipient email address

articles/communication-services/quickstarts/events/includes/create-event-subscription-net.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ using Azure.Security.KeyVault.Secrets
114114
eventGridClient = new EventGridManagementClient(new Uri("https://management.azure.com/"),
115115
new TokenCredentials(token.AccessToken));
116116

117-
eventGridClient.SubscriptionId = 'your_subscripiton_id';
117+
eventGridClient.SubscriptionId = 'your_subscription_id';
118118
```
119119

120120
## Create Event Subscription

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ func joinRoomCall() {
281281
}
282282
```
283283

284-
`CallObserver` is used to manage mid-call events and remote participants. We'll set the observers in the `setCallAndOberserver` function.
284+
`CallObserver` is used to manage mid-call events and remote participants. We'll set the observers in the `setCallAndObserver` function.
285285

286286
```Swift
287287
func setCallAndObserver(call:Call!, error:Error?) {

0 commit comments

Comments
 (0)