Skip to content

Commit 2573cf7

Browse files
authored
Merge pull request #94200 from atsuya-kose/patch-1
Fix to double quote from single quote
2 parents e6fb446 + 1f7895e commit 2573cf7

File tree

1 file changed

+2
-2
lines changed
  • articles/cognitive-services/Speech-Service/includes/quickstarts/text-to-speech-basics

1 file changed

+2
-2
lines changed

articles/cognitive-services/Speech-Service/includes/quickstarts/text-to-speech-basics/rest.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ At a command prompt, run the following cURL command. Insert the following values
2222
key="YourSubscriptionKey"
2323
region="YourServiceRegion"
2424

25-
curl --location --request POST 'https://$region.tts.speech.microsoft.com/cognitiveservices/v1' \
26-
--header 'Ocp-Apim-Subscription-Key: $key' \
25+
curl --location --request POST "https://$region.tts.speech.microsoft.com/cognitiveservices/v1" \
26+
--header "Ocp-Apim-Subscription-Key: $key" \
2727
--header 'Content-Type: application/ssml+xml' \
2828
--header 'X-Microsoft-OutputFormat: audio-16khz-128kbitrate-mono-mp3' \
2929
--header 'User-Agent: curl' \

0 commit comments

Comments
 (0)