Skip to content

Commit d0298de

Browse files
authored
Update markdown formatting for code specifiers
Added code escape
1 parent 6b8c8d1 commit d0298de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/dotnet/how-to-declare-override-specifiers-in-native-compilations-cpp-cli.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ helpviewer_keywords: ["override specifiers in native compilation, overriding"]
66
---
77
# How to: Declare Override Specifiers in Native Compilations (C++/CLI)
88

9-
[sealed](../extensions/sealed-cpp-component-extensions.md), [abstract](../extensions/abstract-cpp-component-extensions.md), and [override](../extensions/override-cpp-component-extensions.md) are available in compilations that do not use **/ZW** or [/clr](../build/reference/clr-common-language-runtime-compilation.md).
9+
[`sealed`](../extensions/sealed-cpp-component-extensions.md), [`abstract`](../extensions/abstract-cpp-component-extensions.md), and [`override`](../extensions/override-cpp-component-extensions.md) are available in compilations that do not use **/ZW** or [`/clr`](../build/reference/clr-common-language-runtime-compilation.md).
1010

1111
> [!NOTE]
12-
> The ISO C++11 Standard language [override](../cpp/override-specifier.md) and [final](../cpp/final-specifier.md) specifiers are supported in Visual Studio. Use `final` instead of **`sealed`** in code that is meant to be compiled as native-only.
12+
> The ISO C++11 Standard language [`override`](../cpp/override-specifier.md) and [`final`](../cpp/final-specifier.md) specifiers are supported in Visual Studio. Use `final` instead of **`sealed`** in code that is meant to be compiled as native-only.
1313
1414
## Example: sealed is valid
1515

@@ -66,7 +66,7 @@ public:
6666

6767
### Description
6868

69-
This example shows that **`abstract`** is valid in native compilations.
69+
This example shows that `abstract` is valid in native compilations.
7070

7171
### Code
7272

0 commit comments

Comments
 (0)