Skip to content

Commit 60fb3db

Browse files
authored
Merge pull request #116566 from dksimpson/DKS-US1712683-bing-spell-check-fix-list-format
Fix list format to conform to standards
2 parents d626007 + 39f2d45 commit 60fb3db

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

articles/cognitive-services/Bing-Spell-Check/quickstarts/csharp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ Although this application is written in C#, the API is a RESTful Web service com
6565

6666
3. Create a string for your search parameters:
6767

68-
a. Assign your market code to the `mkt` parameter with the `=` operator. The market code is the code of the country/region you make the request from.
68+
1. Assign your market code to the `mkt` parameter with the `=` operator. The market code is the code of the country/region you make the request from.
6969

70-
b. Add the `mode` parameter with the `&` operator, and then assign the spell-check mode. The mode can be either `proof` (catches most spelling/grammar errors) or `spell` (catches most spelling errors, but not as many grammar errors).
70+
1. Add the `mode` parameter with the `&` operator, and then assign the spell-check mode. The mode can be either `proof` (catches most spelling/grammar errors) or `spell` (catches most spelling errors, but not as many grammar errors).
7171

7272
```csharp
7373
static string params_ = "mkt=en-US&mode=proof";

articles/cognitive-services/Bing-Spell-Check/quickstarts/java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ Although this application is written in Java, the API is a RESTful web service c
5555
5656
1. Create a function called `check()` to create and send the API request. Within this function, add the code specified in the next steps. Create a string for the request parameters:
5757
58-
a. Assign your market code to the `mkt` parameter with the `=` operator.
58+
1. Assign your market code to the `mkt` parameter with the `=` operator.
5959
60-
b. Add the `mode` parameter with the `&` operator, and then assign the spell-check mode.
60+
1. Add the `mode` parameter with the `&` operator, and then assign the spell-check mode.
6161
6262
```java
6363
public static void check () throws Exception {

articles/cognitive-services/Bing-Spell-Check/quickstarts/nodejs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ Although this application is written in JavaScript, the API is a RESTful Web ser
4141

4242
2. Create variables for your search parameters and the text you want to check:
4343

44-
a. Assign your market code to the `mkt` parameter with the `=` operator. The market code is the code of the country/region you make the request from.
44+
1. Assign your market code to the `mkt` parameter with the `=` operator. The market code is the code of the country/region you make the request from.
4545

46-
b. Add the `mode` parameter with the `&` operator, and then assign the spell-check mode. The mode can be either `proof` (catches most spelling/grammar errors) or `spell` (catches most spelling errors, but not as many grammar errors).
46+
1. Add the `mode` parameter with the `&` operator, and then assign the spell-check mode. The mode can be either `proof` (catches most spelling/grammar errors) or `spell` (catches most spelling errors, but not as many grammar errors).
4747

4848
```javascript
4949
let mkt = "en-US";

articles/cognitive-services/Bing-Spell-Check/quickstarts/python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ Although this application is written in Python, the API is a RESTful Web service
5151

5252
2. Add the parameters for your request:
5353

54-
a. Assign your market code to the `mkt` parameter with the `=` operator. The market code is the code of the country/region you make the request from.
54+
1. Assign your market code to the `mkt` parameter with the `=` operator. The market code is the code of the country/region you make the request from.
5555

56-
b. Add the `mode` parameter with the `&` operator, and then assign the spell-check mode. The mode can be either `proof` (catches most spelling/grammar errors) or `spell` (catches most spelling errors, but not as many grammar errors).
56+
1. Add the `mode` parameter with the `&` operator, and then assign the spell-check mode. The mode can be either `proof` (catches most spelling/grammar errors) or `spell` (catches most spelling errors, but not as many grammar errors).
5757

5858
```python
5959
params = {

articles/cognitive-services/Bing-Spell-Check/quickstarts/ruby.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ Although this application is written in Ruby, the API is a RESTful Web service c
3737

3838
2. Create variables for your subscription key, endpoint URI, and path. You can use the global endpoint in the following code, or use the [custom subdomain](../../../cognitive-services/cognitive-services-custom-subdomains.md) endpoint displayed in the Azure portal for your resource. Create your request parameters:
3939

40-
a. Assign your market code to the `mkt` parameter with the `=` operator. The market code is the code of the country/region you make the request from.
40+
1. Assign your market code to the `mkt` parameter with the `=` operator. The market code is the code of the country/region you make the request from.
4141

42-
b. Add the `mode` parameter with the `&` operator, and then assign the spell-check mode. The mode can be either `proof` (catches most spelling/grammar errors) or `spell` (catches most spelling errors, but not as many grammar errors).
42+
1. Add the `mode` parameter with the `&` operator, and then assign the spell-check mode. The mode can be either `proof` (catches most spelling/grammar errors) or `spell` (catches most spelling errors, but not as many grammar errors).
4343

4444
```ruby
4545
key = 'ENTER YOUR KEY HERE'

0 commit comments

Comments
 (0)