Skip to content

Commit 18ae965

Browse files
authored
Merge pull request MicrosoftDocs#2039 from nschonni/fix--MD029
fix: MD029/ol-prefix
2 parents 3e3e5b9 + 5382b55 commit 18ae965

17 files changed

+115
-115
lines changed

docs/cpp/overloading-unary-operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The unary operators that can be overloaded are the following:
2424

2525
1. `--` ([decrement](../cpp/prefix-increment-and-decrement-operators-increment-and-decrement.md))
2626

27-
9. conversion operators
27+
1. conversion operators
2828

2929
The postfix increment and decrement operators (`++` and `--`) are treated separately in [Increment and Decrement](../cpp/increment-and-decrement-operator-overloading-cpp.md).
3030

docs/dotnet/how-to-add-command-routing-to-the-windows-forms-control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ This topic assumes you have previously completed [How to: Create the User Contro
7272
7373
In **Solution Explorer**, open the Resource.h file, copy the ID value for the menu option you just added, and paste that value as the first parameter to the `m_CmdSrc.AddCommandHandler` call in the C# project's `Initialize` method (replacing `32771` if necessary).
7474
75-
9. Build and run the project.
75+
1. Build and run the project.
7676
7777
On the **Build** menu, click **Build Solution**.
7878

docs/error-messages/compiler-errors-1/fatal-error-c1060.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ The operating system or run-time library cannot fill a request for memory.
3131

3232
1. Eliminate unused declarations.
3333

34-
9. Split the current file into smaller files.
34+
1. Split the current file into smaller files.

docs/linux/download-install-and-setup-the-linux-development-workload.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ For any of these scenarios, the **Linux development with C++** workload is requi
3030

3131
![Windows search box](media/visual-studio-installer-search.png)
3232

33-
2. Look for the installer under the **Apps** results and double-click it. When the installer opens, choose **Modify**, and then click on the **Workloads** tab. Scroll down to **Other toolsets** and select the **Linux development with C++** workload.
33+
1. Look for the installer under the **Apps** results and double-click it. When the installer opens, choose **Modify**, and then click on the **Workloads** tab. Scroll down to **Other toolsets** and select the **Linux development with C++** workload.
3434

3535
![Visual C++ for Linux Development workload](media/linuxworkload.png)
3636

docs/mfc/html-basics.md

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ The steps below use HTML tags to build a simple Web page. In these steps, you'll
1818

1919
1. Type the following lines:
2020

21-
```
22-
<HTML>
23-
<HEAD>
24-
<TITLE>Top HTML Tags</TITLE>
25-
</HEAD>
26-
</HTML>
27-
```
21+
```html
22+
<HTML>
23+
<HEAD>
24+
<TITLE>Top HTML Tags</TITLE>
25+
</HEAD>
26+
</HTML>
27+
```
2828

2929
1. From the **File** menu, choose **Save**, and save the file as c:\webpages\First.htm. Leave the file open in the editor.
3030

@@ -36,12 +36,12 @@ The steps below use HTML tags to build a simple Web page. In these steps, you'll
3636

3737
1. Switch back to Notepad, and after the \</HEAD> line, type:
3838

39-
```
40-
<BODY>
41-
HTML is swell.
42-
Life is good.
43-
</BODY>
44-
```
39+
```html
40+
<BODY>
41+
HTML is swell.
42+
Life is good.
43+
</BODY>
44+
```
4545

4646
1. From the **File** menu, choose **Save**.
4747

@@ -51,35 +51,35 @@ The steps below use HTML tags to build a simple Web page. In these steps, you'll
5151

5252
For all the steps that follow, insert the text anywhere between \<BODY> and \</BODY> to add to the body of your document.
5353

54-
9. Add a header:
54+
1. Add a header:
5555

56-
```
57-
<H3>Here's the big picture</H3>
58-
```
56+
```html
57+
<H3>Here's the big picture</H3>
58+
```
5959

60-
10. Add an image, using a .gif file saved in the same directory as your page:
60+
1. Add an image, using a .gif file saved in the same directory as your page:
6161

62-
```
63-
<IMG src="yourfile.gif">
64-
```
62+
```html
63+
<IMG src="yourfile.gif">
64+
```
6565

66-
11. Add a list:
66+
1. Add a list:
6767

68-
```
69-
<UL>Make me an unordered list.
70-
<LI>One programmer</LI>
71-
<LI>Ten SDKs</LI>
72-
<LI>Great Internet Apps</LI>
73-
</UL>
74-
```
68+
```html
69+
<UL>Make me an unordered list.
70+
<LI>One programmer</LI>
71+
<LI>Ten SDKs</LI>
72+
<LI>Great Internet Apps</LI>
73+
</UL>
74+
```
7575

76-
12. To number the list instead, use paired \<OL> and \</OL> tags in place of the \<UL> and \</UL> tags.
76+
1. To number the list instead, use paired \<OL> and \</OL> tags in place of the \<UL> and \</UL> tags.
7777

7878
That should get you started. If you see a great feature on a Web page, you can find out how it was created by examining the HTML source. HTML editors such as Microsoft Front Page can be used to create both simple and advanced pages.
7979

8080
Here's the entire HTML source for the file you've been building:
8181

82-
```
82+
```html
8383
<HTML>
8484
<HEAD>
8585
<TITLE>Top HTML Tags</TITLE>

docs/mfc/mfc-activex-controls-adding-another-custom-property-page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ For more information on using property pages in an ActiveX control, see the foll
5757

5858
1. In the **Dialog ID** box, select **IDD_PROPPAGE_NEWPAGE**.
5959

60-
9. Click **Finish** to create the class.
60+
1. Click **Finish** to create the class.
6161

6262
To allow the control's users access to this new property page, make the following changes to the control's property page IDs macro section (located in the control implementation file):
6363

docs/mfc/mfc-activex-controls-adding-custom-methods.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ The following procedure demonstrates adding the custom method PtInCircle to an A
4040

4141
1. Using the **Parameter Type** and **Parameter Name** controls, add a parameter called *xCoord* (type *OLE_XPOS_PIXELS*).
4242

43-
9. Using the **Parameter Type** and **Parameter Name** controls, add a parameter called *yCoord* (type *OLE_YPOS_PIXELS*).
43+
1. Using the **Parameter Type** and **Parameter Name** controls, add a parameter called *yCoord* (type *OLE_YPOS_PIXELS*).
4444

45-
10. Click **Finish**.
45+
1. Click **Finish**.
4646

4747
## <a name="_core_classwizard_changes_for_custom_methods"></a> Add Method Wizard Changes for Custom Methods
4848

docs/mfc/mfc-activex-controls-adding-custom-properties.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ This same procedure can also be used to add other custom properties you want. Su
5858

5959
1. Type unique names for your Get and Set Functions, or accept the default names.
6060

61-
9. Click **Finish**.
61+
1. Click **Finish**.
6262

6363
## <a name="_core_classwizard_changes_for_custom_properties"></a> Add Property Wizard Changes for Custom Properties
6464

docs/mfc/mfc-activex-controls-advanced-property-implementation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The Add Property Wizard provides a quick and easy method to implement read-only
3939

4040
1. If you want a read-only property, clear the Set function name. If you want a write-only property, clear the Get function name.
4141

42-
9. Click **Finish**.
42+
1. Click **Finish**.
4343

4444
When you do this, the Add Property Wizard inserts the function `SetNotSupported` or `GetNotSupported` in the dispatch map entry in place of a normal Set or Get function.
4545

docs/mfc/mfc-activex-controls-advanced-topics.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ The following procedure adds a parameterized property, called Array, which can b
6060

6161
1. In the **Get Function** and **Set Function** boxes, type unique names for your Get and Set Functions or accept the default names.
6262

63-
9. Add a parameter, called *row* (type *short*), using the **Parameter Name** and **Parameter Type** controls.
63+
1. Add a parameter, called *row* (type *short*), using the **Parameter Name** and **Parameter Type** controls.
6464

65-
10. Add a second parameter called *column* (type *short*).
65+
1. Add a second parameter called *column* (type *short*).
6666

67-
11. Click **Finish**.
67+
1. Click **Finish**.
6868

6969
### Changes Made by the Add Property Wizard
7070

0 commit comments

Comments
 (0)