Skip to content

Commit 0b22387

Browse files
author
Colin Robertson
committed
Fix params without trailing break
1 parent 017fe10 commit 0b22387

File tree

323 files changed

+8442
-8429
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

323 files changed

+8442
-8429
lines changed

docs/atl-mfc-shared/reference/ctimespan-class.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ bool operator>=(CTimeSpan span) const throw();
8686

8787
### Parameters
8888

89-
*span*
90-
89+
*span*
9190
The object to compare.
9291

9392
### Return Value

docs/atl/reference/atl-dialog-wizard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The wizard inserts into the header file a [message map](../../atl/message-maps-a
2323
**Short name**
2424
Sets the abbreviated name for the ATL dialog object. The name you provide determines the class name and the file (.cpp and .h) names, unless you change those fields individually.
2525

26-
`Class`
26+
**Class**
2727
Sets the name of the class to be created. This name is based on the name you provide in **Short name**, preceded by 'C', the typical prefix for a class name.
2828

2929
**.h file**

docs/atl/reference/atl-operators.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ This section contains the reference topics for the ATL global operators.
3333
Compares `CSid` objects or `SID` (security identifier) structures for equality.
3434

3535
```
36-
bool operator==(const CSid& lhs, const CSid& rhs) throw();
36+
bool operator==(const CSid& lhs, const CSid& rhs) throw();
3737
```
3838

3939
### Parameters
4040

41-
`lhs`
41+
*lhs*
4242
The first `CSid` object or `SID` structure to compare.
4343

44-
`rhs`
44+
*rhs*
4545
The second `CSid` object or `SID` structure to compare.
4646

4747
### Return Value
@@ -53,7 +53,7 @@ Returns TRUE if the objects are equal, FALSE if they are not equal.
5353
Compares `CSid` objects or `SID` (security identifier) structures for inequality.
5454

5555
```
56-
bool operator==(const CSid& lhs, const CSid& rhs) throw();
56+
bool operator==(const CSid& lhs, const CSid& rhs) throw();
5757
```
5858

5959
### Parameters
@@ -73,7 +73,7 @@ Returns TRUE if the objects are not equal, FALSE if they are equal.
7373
Tests if the `CSid` object or `SID` structure on the left side of the operator is less than the `CSid` object or `SID` structure on the right side (for C++ Standard Library compatibility).
7474

7575
```
76-
bool operator<(const CSid& lhs, const CSid& rhs) throw();
76+
bool operator<(const CSid& lhs, const CSid& rhs) throw();
7777
```
7878

7979
### Parameters
@@ -97,7 +97,7 @@ This operator acts on the address of the `CSid` object or `SID` structure, and i
9797
Tests if the `CSid` object or `SID` structure on the left side of the operator is greater than the `CSid` object or `SID` structure on the right side (for C++ Standard Library compatibility).
9898

9999
```
100-
bool operator<(const CSid& lhs, const CSid& rhs) throw();
100+
bool operator<(const CSid& lhs, const CSid& rhs) throw();
101101
```
102102

103103
### Parameters
@@ -121,7 +121,7 @@ This operator acts on the address of the `CSid` object or `SID` structure, and i
121121
Tests if the `CSid` object or `SID` structure on the left side of the operator is less than or equal to the `CSid` object or `SID` structure on the right side (for C++ Standard Library compatibility).
122122

123123
```
124-
bool operator<(const CSid& lhs, const CSid& rhs) throw();
124+
bool operator<(const CSid& lhs, const CSid& rhs) throw();
125125
```
126126

127127
### Parameters
@@ -145,7 +145,7 @@ This operator acts on the address of the `CSid` object or `SID` structure, and i
145145
Tests if the `CSid` object or `SID` structure on the left side of the operator is greater than or equal to the `CSid` object or `SID` structure on the right side (for C++ Standard Library compatibility).
146146

147147
```
148-
bool operator<(const CSid& lhs, const CSid& rhs) throw();
148+
bool operator<(const CSid& lhs, const CSid& rhs) throw();
149149
```
150150

151151
### Parameters

docs/atl/reference/cadapt-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,9 @@ CAdapt& operator= (CAdapt<T>&& rSrCA) noexcept; // (Visual Studio 2017)
152152
### Parameters
153153

154154
*rSrc*
155-
A reference to an object of the adapted type to be copied.
155+
A reference to an object of the adapted type to be copied.
156156

157-
*rSrCA*
157+
*rSrCA*
158158
A reference to an object to be moved.
159159

160160
### Return Value

docs/atl/reference/catlautothreadmodule-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.workload: ["cplusplus"]
1717
This class implements a thread-pooled, apartment-model COM server.
1818

1919
> [!IMPORTANT]
20-
> This class and its members cannot be used in applications that execute in the Windows Runtime.
20+
> This class and its members cannot be used in applications that execute in the Windows Runtime.
2121
2222
## Syntax
2323

@@ -34,7 +34,7 @@ You must use the [DECLARE_CLASSFACTORY_AUTO_THREAD](aggregation-and-class-factor
3434
`CAtlAutoThreadModule _AtlAutoModule; // name is immaterial.`
3535

3636
> [!NOTE]
37-
> This class replaces the obsolete [CComAutoThreadModule](../../atl/reference/ccomautothreadmodule-class.md) class.
37+
> This class replaces the obsolete [CComAutoThreadModule](../../atl/reference/ccomautothreadmodule-class.md) class.
3838
3939
## Inheritance Hierarchy
4040

docs/atl/reference/cautoptrarray-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class CAutoPtrArray : public CAtlArray<
3030

3131
#### Parameters
3232

33-
`E`
33+
*E*<br/>
3434
The pointer type.
3535

3636
## Members

docs/build/reference/ai-specify-metadata-directories.md

Lines changed: 32 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -13,34 +13,35 @@ ms.author: "corob"
1313
ms.workload: ["cplusplus"]
1414
---
1515
# /AI (Specify Metadata Directories)
16-
Specifies a directory that the compiler will search to resolve file references passed to the `#using` directive.
17-
18-
## Syntax
19-
20-
```
21-
/AIdirectory
22-
```
23-
24-
## Arguments
25-
`directory`
26-
The directory or path for the compiler to search.
27-
28-
## Remarks
29-
Only one directory can be passed to an **/AI** invocation. Specify one **/AI** option for each path you want the compiler to search. For example, to add both C:\Project\Meta and C:\Common\Meta to the compiler search path for `#using` directives, add `/AI"C:\Project\Meta" /AI"C:\Common\Meta"` to the compiler command line or add each directory to the **Additional #using Directories** property in Visual Studio.
30-
31-
### To set this compiler option in the Visual Studio development environment
32-
33-
1. Open the project's **Property Pages** dialog box. For details, see [Working with Project Properties](../../ide/working-with-project-properties.md).
34-
35-
2. In the navigation pane, select **Configuration Properties**, **C/C++**, **General**.
36-
37-
3. Modify the **Additional #using Directories** property.
38-
39-
### To set this compiler option programmatically
40-
41-
- See <xref:Microsoft.VisualStudio.VCProjectEngine.VCCLCompilerTool.AdditionalUsingDirectories%2A>.
42-
43-
## See Also
44-
[Compiler Options](../../build/reference/compiler-options.md)
45-
[Setting Compiler Options](../../build/reference/setting-compiler-options.md)
46-
[#using Directive](../../preprocessor/hash-using-directive-cpp.md)
16+
17+
Specifies a directory that the compiler will search to resolve file references passed to the `#using` directive.
18+
19+
## Syntax
20+
21+
> **/AI**_directory_
22+
23+
## Arguments
24+
25+
*directory*<br/>
26+
The directory or path for the compiler to search.
27+
28+
## Remarks
29+
Only one directory can be passed to an **/AI** invocation. Specify one **/AI** option for each path you want the compiler to search. For example, to add both C:\Project\Meta and C:\Common\Meta to the compiler search path for `#using` directives, add `/AI"C:\Project\Meta" /AI"C:\Common\Meta"` to the compiler command line or add each directory to the **Additional #using Directories** property in Visual Studio.
30+
31+
### To set this compiler option in the Visual Studio development environment
32+
33+
1. Open the project's **Property Pages** dialog box. For details, see [Working with Project Properties](../../ide/working-with-project-properties.md).
34+
35+
2. Select the **Configuration Properties** > **C/C++** > **General** property page.
36+
37+
3. Modify the **Additional #using Directories** property.
38+
39+
### To set this compiler option programmatically
40+
41+
- See <xref:Microsoft.VisualStudio.VCProjectEngine.VCCLCompilerTool.AdditionalUsingDirectories%2A>.
42+
43+
## See Also
44+
45+
[Compiler Options](../../build/reference/compiler-options.md)
46+
[Setting Compiler Options](../../build/reference/setting-compiler-options.md)
47+
[#using Directive](../../preprocessor/hash-using-directive-cpp.md)

0 commit comments

Comments
 (0)