Skip to content

Commit bc9fd5e

Browse files
committed
Fixing acrolinx bugggggg.
1 parent bab4833 commit bc9fd5e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

articles/cognitive-services/Translator/quickstart-csharp-detect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ foreach (DetectResult o in deserializedOutput)
175175

176176
## Put it all together
177177

178-
The last step is to call `DetectTextRequest()` in the `Main` function. Locate `static void Main(string[] args)` and add these lines:
178+
The last step is to call `DetectTextRequest()` in the `Main` function. Locate `static void Main(string[] args)` and replace it with this code:
179179

180180
```csharp
181181
static async Task Main(string[] args)

articles/cognitive-services/Translator/quickstart-csharp-sentences.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ foreach (BreakSentenceResult o in deserializedOutput)
161161

162162
## Put it all together
163163

164-
The last step is to call `BreakSentenceRequest()` in the `Main` function. Locate `static void Main(string[] args)` and add replace it with this code:
164+
The last step is to call `BreakSentenceRequest()` in the `Main` function. Locate `static void Main(string[] args)` and replace it with this code:
165165

166166
```csharp
167167
static async Task Main(string[] args)

articles/cognitive-services/Translator/quickstart-csharp-transliterate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ foreach (TransliterationResult o in deserializedOutput)
155155

156156
## Put it all together
157157

158-
The last step is to call `TransliterateTextRequest()` in the `Main` function. In this sample, we're transliterating from Japanese to latin script. Locate `static void Main(string[] args)` and add replace it with this code:
158+
The last step is to call `TransliterateTextRequest()` in the `Main` function. In this sample, we're transliterating from Japanese to latin script. Locate `static void Main(string[] args)` and replace it with this code:
159159

160160
```csharp
161161
static async Task Main(string[] args)

0 commit comments

Comments
 (0)