Skip to content

Commit 2485834

Browse files
committed
Make 'endpoint' uppercase
1 parent f2ac4c9 commit 2485834

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

articles/ai-services/speech-service/includes/common/environment-variables-clu.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ To set the environment variables, open a console window, and follow the instruct
1515
- To set the `LANGUAGE_ENDPOINT` environment variable, replace `your-language-endpoint` with one of the regions for your resource.
1616
- To set the `SPEECH_KEY` environment variable, replace `your-speech-key` with one of the keys for your resource.
1717
- To set the `SPEECH_REGION` environment variable, replace `your-speech-region` with one of the regions for your resource.
18-
- To set the `Endpoint` environment variable, replace `your-speech-endpoint` with the actual endpoint of your Speech resource.
18+
- To set the `ENDPOINT` environment variable, replace `your-speech-endpoint` with the actual endpoint of your Speech resource.
1919

2020
#### [Windows](#tab/windows)
2121

@@ -24,7 +24,7 @@ setx LANGUAGE_KEY your-language-key
2424
setx LANGUAGE_ENDPOINT your-language-endpoint
2525
setx SPEECH_KEY your-speech-key
2626
setx SPEECH_REGION your-speech-region
27-
setx Endpoint your-speech-endpoint
27+
setx ENDPOINT your-speech-endpoint
2828
```
2929

3030
> [!NOTE]
@@ -39,7 +39,7 @@ export LANGUAGE_KEY=your-language-key
3939
export LANGUAGE_ENDPOINT=your-language-endpoint
4040
export SPEECH_KEY=your-speech-key
4141
export SPEECH_REGION=your-speech-region
42-
export Endpoint=your-speech-endpoint
42+
export ENDPOINT=your-speech-endpoint
4343
```
4444

4545
After you add the environment variables, run `source ~/.bashrc` from your console window to make the changes effective.
@@ -55,7 +55,7 @@ export LANGUAGE_KEY=your-language-key
5555
export LANGUAGE_ENDPOINT=your-language-endpoint
5656
export SPEECH_KEY=your-speech-key
5757
export SPEECH_REGION=your-speech-region
58-
export Endpoint=your-speech-endpoint
58+
export ENDPOINT=your-speech-endpoint
5959
```
6060

6161
After you add the environment variables, run `source ~/.bash_profile` from your console window to make the changes effective.

articles/ai-services/speech-service/includes/common/environment-variables.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ To set the environment variables for your Speech resource key and region, open a
1414

1515
- To set the `SPEECH_KEY` environment variable, replace *your-key* with one of the keys for your resource.
1616
- To set the `SPEECH_REGION` environment variable, replace *your-region* with one of the regions for your resource.
17-
- To set the `Endpoint` environment variable, replace `your-endpoint` with the actual endpoint of your Speech resource.
17+
- To set the `ENDPOINT` environment variable, replace `your-endpoint` with the actual endpoint of your Speech resource.
1818

1919
#### [Windows](#tab/windows)
2020

2121
```console
2222
setx SPEECH_KEY your-key
2323
setx SPEECH_REGION your-region
24-
setx Endpoint your-endpoint
24+
setx ENDPOINT your-endpoint
2525
```
2626

2727
> [!NOTE]
@@ -38,7 +38,7 @@ Edit your *.bashrc* file, and add the environment variables:
3838
```bash
3939
export SPEECH_KEY=your-key
4040
export SPEECH_REGION=your-region
41-
export Endpoint=your-endpoint
41+
export ENDPOINT=your-endpoint
4242
```
4343

4444
After you add the environment variables, run `source ~/.bashrc` from your console window to make the changes effective.
@@ -52,7 +52,7 @@ Edit your *.bash_profile* file, and add the environment variables:
5252
```bash
5353
export SPEECH_KEY=your-key
5454
export SPEECH_REGION=your-region
55-
export Endpoint=your-endpoint
55+
export ENDPOINT=your-endpoint
5656
```
5757

5858
After you add the environment variables, run `source ~/.bash_profile` from your console window to make the changes effective.
@@ -66,7 +66,7 @@ For iOS and macOS development, you set the environment variables in Xcode. For e
6666
1. Under **Environment Variables** select the plus (+) sign to add a new environment variable.
6767
1. Enter `SPEECH_KEY` for the **Name** and enter your Speech resource key for the **Value**.
6868

69-
To set the environment variable for your Speech resource region, follow the same steps. Set `SPEECH_REGION` to the region of your resource. For example, `westus`. Set `Endpoint` to the endpoint of your resource
69+
To set the environment variable for your Speech resource region, follow the same steps. Set `SPEECH_REGION` to the region of your resource. For example, `westus`. Set `ENDPOINT` to the endpoint of your resource
7070

7171
For more configuration options, see [the Xcode documentation](https://help.apple.com/xcode/#/dev745c5c974).
7272

0 commit comments

Comments
 (0)