From 4d5de387039622ceb495486d3aaac170a3e1cefe Mon Sep 17 00:00:00 2001
From: Rageking8 <106309953+Rageking8@users.noreply.github.com>
Date: Wed, 2 Jul 2025 16:53:56 +0800
Subject: [PATCH 1/2] Remove some stray backticks
---
docs/mfc/reference/mfc-classes.md | 2 +-
docs/preprocessor/compiler-warnings-that-are-off-by-default.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/mfc/reference/mfc-classes.md b/docs/mfc/reference/mfc-classes.md
index 83c30958f5..8389dcd7e5 100644
--- a/docs/mfc/reference/mfc-classes.md
+++ b/docs/mfc/reference/mfc-classes.md
@@ -71,7 +71,7 @@ Lets you save a complex network of objects in a permanent binary form (usually d
Represents a serialization exception condition.
[`CArray` Class](carray-class.md)\
-Supports arrays that resemble` C arrays, but can dynamically reduce and grow as necessary.
+Supports arrays that resemble C arrays, but can dynamically reduce and grow as necessary.
[`CAsyncMonikerFile` Class](casyncmonikerfile-class.md)\
Provides functionality for the use of asynchronous monikers in ActiveX controls (formerly OLE controls).
diff --git a/docs/preprocessor/compiler-warnings-that-are-off-by-default.md b/docs/preprocessor/compiler-warnings-that-are-off-by-default.md
index da2758a0ba..ee373f2e0d 100644
--- a/docs/preprocessor/compiler-warnings-that-are-off-by-default.md
+++ b/docs/preprocessor/compiler-warnings-that-are-off-by-default.md
@@ -158,7 +158,7 @@ The following warnings are turned off by default in Visual Studio 2019 and later
| Warning | Message |
|--|--|
-| C5052 (level 3) | Keyword '*keyword-name*' was introduced in C++ *version* and requires use of the '*option*' command-line option` 16.1 |
+| C5052 (level 3) | Keyword '*keyword-name*' was introduced in C++ *version* and requires use of the '*option*' command-line option 16.1 |
| C5204 (level 3) | A class with virtual functions has non-virtual trivial destructor. 16.5 |
| C5214 (level 4) | applying '*keyword*' to an operand with a volatile qualified type is deprecated in C++20 16.7 |
| C5215 (level 4) | '*function-parameter*' a function parameter with a volatile qualified type is deprecated in C++20 16.7 |
From 044e561ca913a34c9d3870b50774ab718bbe4687 Mon Sep 17 00:00:00 2001
From: Rageking8 <106309953+Rageking8@users.noreply.github.com>
Date: Wed, 2 Jul 2025 16:54:28 +0800
Subject: [PATCH 2/2] Move `title` above `description` in "Compiler warnings
that are off by default" article
---
docs/preprocessor/compiler-warnings-that-are-off-by-default.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/preprocessor/compiler-warnings-that-are-off-by-default.md b/docs/preprocessor/compiler-warnings-that-are-off-by-default.md
index ee373f2e0d..96a31c2983 100644
--- a/docs/preprocessor/compiler-warnings-that-are-off-by-default.md
+++ b/docs/preprocessor/compiler-warnings-that-are-off-by-default.md
@@ -1,6 +1,6 @@
---
-description: "Learn more about: Compiler warnings that are off by default"
title: "Compiler warnings that are off by default"
+description: "Learn more about: Compiler warnings that are off by default"
ms.date: 01/18/2024
helpviewer_keywords: ["warnings, compiler", "cl.exe compiler, setting options"]
---