Skip to content

Commit 3fc7391

Browse files
author
Minnie Liu
committed
Fix build
1 parent 83d80c9 commit 3fc7391

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/communication-services/quickstarts/media-composition/get-started-media-comp.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Get started with Azure Communication Services by using the Communication Service
3737

3838
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
3939
- The latest version of [.NET Core SDK](https://dotnet.microsoft.com/download/dotnet-core) for your operating system.
40-
- An active Communication Services resource and connection string. [Create a Communication Services resource](../../create-communication-resource.md).
40+
- An active Communication Services resource and connection string. [Create a Communication Services resource](../create-communication-resource.md).
4141

4242
### Prerequisite check
4343

@@ -87,7 +87,7 @@ To set up an environment for using media composition, take the steps in the foll
8787

8888
Open **Program.cs** in a text editor and replace the body of the `Main` method with code to initialize a `MediaCompositionClient` with your connection string. The `MediaCompositionClient` will be used to create and manage media composition objects.
8989

90-
You can find your Communication Services resource connection string in the Azure portal. For more information on connection strings, see [this page](../../create-communication-resource.md#access-your-connection-strings-and-service-endpoints).
90+
You can find your Communication Services resource connection string in the Azure portal. For more information on connection strings, see [this page](../create-communication-resource.md#access-your-connection-strings-and-service-endpoints).
9191

9292

9393
```csharp
@@ -98,7 +98,7 @@ MediaCompositionClient mediaCompositionClient = new MediaCompositionClient(conne
9898

9999
## Create a media composition
100100

101-
Create a new media composition by defining the `inputs`, `layout`, `outputs`, as well as a user-friendly `id`. For more details on how to define the values, refer to [this page](../define-media-composition.md). These values are passed into the `CreateAsync` function exposed on the client. The code snippet below shows and example of defining a simple two by two grid layout:
101+
Create a new media composition by defining the `inputs`, `layout`, `outputs`, as well as a user-friendly `id`. For more details on how to define the values, refer to [this page](./define-media-composition.md). These values are passed into the `CreateAsync` function exposed on the client. The code snippet below shows and example of defining a simple two by two grid layout:
102102

103103
```csharp
104104
var layout = new GridLayout(rows: 2, columns: 2, inputIds: new List<List<string>>{ new List<string> { "jill", "jack" }, new List<string> { "jane", "jerry" } })

articles/zone-pivot-groups.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1154,7 +1154,7 @@ groups:
11541154
- id: programming-language-javascript
11551155
title: JavaScript
11561156
- id: programming-language-python
1157-
title:
1157+
title: Python
11581158
# Owner: memildin
11591159
- id: non-azure-machines
11601160
title: Non-Azure machines

0 commit comments

Comments
 (0)