Skip to content

Commit 3de6754

Browse files
author
mtx48109
committed
cpp formatting review pr13
1 parent 4dd72c1 commit 3de6754

30 files changed

+43
-67
lines changed

docs/cpp/based-grammar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ ms.workload: ["cplusplus"]
3535

3636
**END Microsoft Specific**
3737

38-
## See Also
38+
## See also
3939
[Based Pointers](../cpp/based-pointers-cpp.md)

docs/cpp/based-pointers-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@ int main() {
8484
11
8585
```
8686

87-
## See Also
87+
## See also
8888
[Keywords](../cpp/keywords-cpp.md)
8989
[alloc_text](../preprocessor/alloc-text.md)

docs/cpp/basic-concepts-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ This section explains concepts that are critical to understanding C++. C program
3232

3333
- [Trivial, standard-layout and POD types](../cpp/trivial-standard-layout-and-pod-types.md)
3434

35-
## See Also
35+
## See also
3636
[C++ Language Reference](../cpp/cpp-language-reference.md)

docs/cpp/binary-operators.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,4 @@ where *ret-type* and *op* are as described for member operator functions and *ar
6868
> There is no restriction on the return types of the binary operators; however, most user-defined binary operators return either a class type or a reference to a class type.
6969
7070
## See also
71-
72-
- [Operator Overloading](../cpp/operator-overloading.md)
71+
[Operator Overloading](../cpp/operator-overloading.md)

docs/cpp/bitwise-and-operator-amp.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ ms.workload: ["cplusplus"]
1717
## Syntax
1818

1919
```
20-
2120
expression & expression
22-
2321
```
2422

2523
## Remarks
@@ -48,7 +46,7 @@ int main() {
4846
}
4947
```
5048

51-
## See Also
49+
## See also
5250
[C++ Built-in Operators, Precedence and Associativity](cpp-built-in-operators-precedence-and-associativity.md)
5351
[C++ Built-in Operators, Precedence and Associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)
5452
[C Bitwise Operators](../c-language/c-bitwise-operators.md)

docs/cpp/bitwise-exclusive-or-operator-hat.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,5 @@ int main() {
4242
}
4343
```
4444

45-
## See Also
46-
[C++ Built-in Operators, Precedence and Associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)
47-
48-
45+
## See also
46+
[C++ Built-in Operators, Precedence and Associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)

docs/cpp/bitwise-inclusive-or-operator-pipe.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,5 @@ int main() {
4646
```
4747

4848
## See also
49-
50-
- [C++ Built-in Operators, Precedence and Associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)
51-
- [C Bitwise Operators](../c-language/c-bitwise-operators.md)
49+
[C++ Built-in Operators, Precedence and Associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)
50+
[C Bitwise Operators](../c-language/c-bitwise-operators.md)

docs/cpp/bool-cpp.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,5 @@ The postfix or prefix **--** operator cannot be applied to a variable of this ty
4848
The **bool** type participates in integral promotions. An r-value of type **bool** can be converted to an r-value of type **int**, with FALSE becoming zero and TRUE becoming one. As a distinct type, **bool** participates in overload resolution.
4949

5050
## See also
51-
52-
[Keywords](../cpp/keywords-cpp.md)<br/>
53-
[Fundamental Types](../cpp/fundamental-types-cpp.md)<br/>
51+
[Keywords](../cpp/keywords-cpp.md)
52+
[Fundamental Types](../cpp/fundamental-types-cpp.md)

docs/cpp/break-statement-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ int main() {
147147
}
148148
```
149149

150-
## See Also
150+
## See also
151151
[Jump Statements](../cpp/jump-statements-cpp.md)
152152
[Keywords](../cpp/keywords-cpp.md)
153153
[continue Statement](../cpp/continue-statement-cpp.md)

docs/cpp/bstr-t-assign.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ void Assign(
3030
A `BSTR` to be copied into the `BSTR` wrapped by a `_bstr_t`.
3131

3232
## Remarks
33-
`Assign` does a binary copy, which means the entire length of the `BSTR` is copied, regardless of content.
33+
**Assign** does a binary copy, which means the entire length of the `BSTR` is copied, regardless of content.
3434

3535
## Example
3636

@@ -107,5 +107,5 @@ bstrWrapper2 = some text
107107

108108
**END Microsoft Specific**
109109

110-
## See Also
110+
## See also
111111
[_bstr_t Class](../cpp/bstr-t-class.md)

0 commit comments

Comments
 (0)