Skip to content

Commit 7b34bf9

Browse files
authored
Make list formatting consistent (#23865)
1 parent 1e2cfb2 commit 7b34bf9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/csharp/language-reference/preprocessor-directives.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public class MyClass
152152
You use the following two preprocessor directives to define or undefine symbols for conditional compilation:
153153

154154
- `#define`: Define a symbol.
155-
- `#undef`: undefine a symbol.
155+
- `#undef`: Undefine a symbol.
156156

157157
You use `#define` to define a symbol. When you use the symbol as the expression that's passed to the `#if` directive, the expression will evaluate to `true`, as the following example shows:
158158

@@ -175,7 +175,7 @@ Symbols can be used to specify conditions for compilation. You can test for the
175175
You can define regions of code that can be collapsed in an outline using the following two preprocessor directives:
176176

177177
- `#region`: Start a region.
178-
- `#endregion`: End a region
178+
- `#endregion`: End a region.
179179

180180
`#region` lets you specify a block of code that you can expand or collapse when using the [outlining](/visualstudio/ide/outlining) feature of the code editor. In longer code files, it's convenient to collapse or hide one or more regions so that you can focus on the part of the file that you're currently working on. The following example shows how to define a region:
181181

0 commit comments

Comments
 (0)