Skip to content

Commit fd67b3e

Browse files
committed
Used important annotation
1 parent 756490b commit fd67b3e

File tree

1 file changed

+4
-2
lines changed
  • articles/ai-services/speech-service/includes/quickstarts/platform

1 file changed

+4
-2
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ The following steps enable your Go environment to find the Speech SDK. In both s
2424

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

27-
**Important:** Replace `<architecture>` in the code snippet below with what corresponds to your setup with either "x86", "x64", "arm32" or "arm64"
27+
> [!IMPORTANT]
28+
> Replace `<architecture>` in the code snippet below with what corresponds to your setup with either "x86", "x64", "arm32" or "arm64"
2829
2930
```sh
3031
export CGO_CFLAGS="-I$SPEECHSDK_ROOT/include/c_api"
@@ -33,7 +34,8 @@ The following steps enable your Go environment to find the Speech SDK. In both s
3334

3435
2. To run applications and the SDK, you need to tell the operating system where to find the libraries.
3536

36-
**Important:** Replace `<architecture>` in the code snippet below with what corresponds to your setup with either "x86", "x64", "arm32" or "arm64"
37+
> [!IMPORTANT]
38+
> Replace `<architecture>` in the code snippet below with what corresponds to your setup with either "x86", "x64", "arm32" or "arm64"
3739
3840
```sh
3941
export LD_LIBRARY_PATH="$SPEECHSDK_ROOT/lib/<architecture>:$LD_LIBRARY_PATH"

0 commit comments

Comments
 (0)