Skip to content

Commit 120c348

Browse files
author
mtx48109
committed
format fix
1 parent ae2a18c commit 120c348

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

docs/cpp/pointers-cpp.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,25 +27,25 @@ Pointers are declared using the following sequence.
2727

2828
1. The declaration specifiers:
2929

30-
- An optional storage class specifier. For more information, see [Specifiers](../cpp/specifiers.md).
30+
- An optional storage class specifier. For more information, see [Specifiers](../cpp/specifiers.md).
3131

32-
- An optional **const** or **volatile** keyword applying to the type of the object to be pointed to.
32+
- An optional **const** or **volatile** keyword applying to the type of the object to be pointed to.
3333

34-
- The type specifier: the name of a type representing the type of the object to be pointed to.
34+
- The type specifier: the name of a type representing the type of the object to be pointed to.
3535

3636
2. The declarator:
3737

38-
- An optional Microsoft specific modifier. For more information, see [Microsoft-Specific Modifiers](../cpp/microsoft-specific-modifiers.md).
38+
- An optional Microsoft specific modifier. For more information, see [Microsoft-Specific Modifiers](../cpp/microsoft-specific-modifiers.md).
3939

40-
- The `*` operator.
40+
- The `*` operator.
4141

42-
- An optional **const** or **volatile** keyword applying to the pointer itself.
42+
- An optional **const** or **volatile** keyword applying to the pointer itself.
4343

44-
- The identifier.
44+
- The identifier.
4545

46-
- An optional initializer.
46+
- An optional initializer.
4747

48-
The declarator for a pointer to function looks like this:
48+
The declarator for a pointer to function looks like this:
4949

5050
```
5151
(* [cv-qualifiers] identifier )( argument-list ) [cv-qualifers]

0 commit comments

Comments
 (0)