Skip to content

Commit 8ff641a

Browse files
Incorporate feedback.
1 parent d7b9796 commit 8ff641a

File tree

9 files changed

+26
-26
lines changed

9 files changed

+26
-26
lines changed

articles/ai-services/speech-service/includes/quickstarts/platform/cpp-macos.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,26 +18,26 @@ This guide shows how to install the [Speech SDK](~/articles/ai-services/speech-s
1818

1919
For example, if you want to use the directory *speechsdk* in your home directory, use a command like the following example:
2020

21-
```sh
21+
```console
2222
export SPEECHSDK_ROOT="$HOME/speechsdk"
2323
```
2424

2525
1. Create the directory if it doesn't exist:
2626

27-
```sh
27+
```console
2828
mkdir -p "$SPEECHSDK_ROOT"
2929
```
3030

3131
1. Download and extract the *.zip* archive that contains the Speech SDK XCFramework:
3232

33-
```sh
33+
```console
3434
wget -O SpeechSDK-macOS.zip https://aka.ms/csspeech/macosbinary
3535
unzip SpeechSDK-macOS.zip -d "$SPEECHSDK_ROOT"
3636
```
3737

3838
1. Validate the contents of the top-level directory of the extracted package:
3939

40-
```sh
40+
```console
4141
ls -l "$SPEECHSDK_ROOT"
4242
```
4343

articles/ai-services/speech-service/includes/quickstarts/platform/csharp-dotnet-windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ You need to install the [Speech SDK NuGet package](https://aka.ms/csspeech/nuget
5656

5757
1. In the upper-left corner, select **Browse**.
5858

59-
1. In the search box, type *Microsoft.CognitiveServices.Speech* and select **Enter**.
59+
1. In the search box, enter *Microsoft.CognitiveServices.Speech* and select **Enter**.
6060

6161
1. From the search results, select the **Microsoft.CognitiveServices.Speech** package, and then select **Install** to install the latest stable version.
6262

articles/ai-services/speech-service/includes/quickstarts/platform/csharp-dotnetcore-windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This guide requires:
3333

3434
:::image type="content" source="~/articles/ai-services/speech-service/media/sdk/vs-enable-net-core-workload.png" alt-text="Screenshot of the Visual Studio installer, with the Workloads tab highlighted.":::
3535

36-
1. Create a new Visual C# .NET Core console app. In the **New Project** dialog box, from the left pane, expand **Installed** > **Visual C#** > **.NET Core**. Then select **Console App (.NET Core)**. For the project name, enter *helloworld*.
36+
1. Create a new Visual C# .NET Core console app in the **New Project** dialog box. From the left pane, expand **Installed** > **Visual C#** > **.NET Core**. Then select **Console App (.NET Core)**. For the project name, enter *helloworld*.
3737

3838
:::image type="content" source="~/articles/ai-services/speech-service/media/sdk/qs-csharp-dotnetcore-windows-01-new-console-app.png" alt-text="Screenshot of the New Project dialog box." lightbox="~/articles/ai-services/speech-service/media/sdk/qs-csharp-dotnetcore-windows-01-new-console-app.png":::
3939

@@ -49,4 +49,4 @@ This guide requires:
4949

5050
:::image type="content" source="~/articles/ai-services/speech-service/media/sdk/qs-csharp-dotnetcore-windows-04-nuget-license.png" alt-text="Screenshot of License Acceptance dialog box.":::
5151

52-
After the package is installed, a confirmation appears in the Package Manager console.
52+
After the package is installed, a confirmation appears in the **Package Manager** console.

articles/ai-services/speech-service/includes/quickstarts/platform/csharp-uwp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Next, create your project and select the target architecture:
9494

9595
Allow the project to capture audio input:
9696

97-
1. In **Solution Explorer**, double-select **Package.appxmanifest** to open the package application manifest.
97+
1. In **Solution Explorer**, select **Package.appxmanifest** to open the package application manifest.
9898

9999
1. Select the **Capabilities** tab.
100100

articles/ai-services/speech-service/includes/quickstarts/platform/csharp-xamarin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Next, create your project and select the target architecture:
7575

7676
:::image type="content" source="~/articles/ai-services/speech-service/media/sdk/vs-enable-xamarin-configure-your-new-project.png" alt-text="Screenshot that shows how to configure your new project in Visual Studio." lightbox="~/articles/ai-services/speech-service/media/sdk/vs-enable-xamarin-configure-your-new-project.png":::
7777

78-
1. In the **New Cross Platform App** window, select the **Blank** template, and then select **OK**.
78+
1. In the **New Cross Platform App** window, select the **Blank** template, and then select **Create**.
7979

8080
:::image type="content" source="~/articles/ai-services/speech-service/media/sdk/qs-csharp-xamarin-new-xamarin-project.png" alt-text="Screenshot that shows the New Mobile App Xamarin Forms Project dialog box in Visual Studio." lightbox="~/articles/ai-services/speech-service/media/sdk/qs-csharp-xamarin-new-xamarin-project.png":::
8181

articles/ai-services/speech-service/includes/quickstarts/platform/go-linux.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The following steps enable your Go environment to find the Speech SDK.
2929

3030
1. Because the bindings rely on `cgo`, you need to set the environment variables so Go can find the SDK.
3131

32-
```sh
32+
```console
3333
export CGO_CFLAGS="-I$SPEECHSDK_ROOT/include/c_api"
3434
export CGO_LDFLAGS="-L$SPEECHSDK_ROOT/lib/<architecture> -lMicrosoft.CognitiveServices.Speech.core"
3535
```
@@ -39,7 +39,7 @@ The following steps enable your Go environment to find the Speech SDK.
3939
4040
1. To run applications and the SDK, you need to tell the operating system where to find the libraries.
4141

42-
```sh
42+
```console
4343
export LD_LIBRARY_PATH="$SPEECHSDK_ROOT/lib/<architecture>:$LD_LIBRARY_PATH"
4444
```
4545

articles/ai-services/speech-service/includes/quickstarts/platform/java-jre.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -104,15 +104,15 @@ Follow these steps to install the Speech SDK for Java using Apache Maven:
104104

105105
1. Add a `dependencies` element at the end of the file, before the closing tag `</project>`, with the Speech SDK as a dependency:
106106

107-
```xml
108-
<dependencies>
109-
<dependency>
110-
<groupId>com.microsoft.cognitiveservices.speech</groupId>
111-
<artifactId>client-sdk</artifactId>
112-
<version>1.32.1</version>
113-
</dependency>
114-
</dependencies>
115-
```
107+
```xml
108+
<dependencies>
109+
<dependency>
110+
<groupId>com.microsoft.cognitiveservices.speech</groupId>
111+
<artifactId>client-sdk</artifactId>
112+
<version>1.32.1</version>
113+
</dependency>
114+
</dependencies>
115+
```
116116

117117
1. Save the changes.
118118

articles/ai-services/speech-service/includes/quickstarts/platform/linux-install-sdk.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,26 @@ Use the following procedure to download and install the SDK. The steps include [
1212

1313
If you want to use the directory *speechsdk* in your home directory, use a command like the following example:
1414

15-
```sh
15+
```console
1616
export SPEECHSDK_ROOT="$HOME/speechsdk"
1717
```
1818

1919
1. Create the directory if it doesn't exist yet:
2020

21-
```sh
21+
```console
2222
mkdir -p "$SPEECHSDK_ROOT"
2323
```
2424

2525
1. Download and extract the *.tar.gz* archive that contains the Speech SDK binaries:
2626

27-
```sh
27+
```console
2828
wget -O SpeechSDK-Linux.tar.gz https://aka.ms/csspeech/linuxbinary
2929
tar --strip 1 -xzf SpeechSDK-Linux.tar.gz -C "$SPEECHSDK_ROOT"
3030
```
3131

3232
1. Validate the contents of the top-level directory of the extracted package:
3333

34-
```sh
34+
```console
3535
ls -l "$SPEECHSDK_ROOT"
3636
```
3737

articles/ai-services/speech-service/includes/quickstarts/platform/objectivec.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The macOS CocoaPod package is available for download and use with the [Xcode 9.4
2727

2828
1. Go to the Xcode directory where your *.xcodeproj* project file is located.
2929
1. Run `pod init` to create a pod file named *Podfile*.
30-
1. Replace the contents of *Podfile* with the following. Update the `target` name from `AppName` to the name of your app. Update the platform or pod version as needed.
30+
1. Replace the contents of *Podfile* with the following content. Update the `target` name from `AppName` to the name of your app. Update the platform or pod version as needed.
3131

3232
```objc
3333
platform :osx, 10.14
@@ -58,7 +58,7 @@ The macOS CocoaPod package is available for download and use with the [Xcode 9.4
5858

5959
1. Go to the Xcode directory where your *.xcodeproj* project file is located.
6060
1. Run `pod init` to create a pod file named *Podfile*.
61-
1. Replace the contents of *Podfile* with the following. Update the `target` name from `AppName` to the name of your app. Update the platform or pod version as needed.
61+
1. Replace the contents of *Podfile* with the following content. Update the `target` name from `AppName` to the name of your app. Update the platform or pod version as needed.
6262

6363
```objc
6464
platform :ios, '9.3'

0 commit comments

Comments
 (0)