Skip to content

Commit 204525f

Browse files
authored
Trim excess middle space in headings
1 parent a3c0eaf commit 204525f

File tree

57 files changed

+63
-63
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+63
-63
lines changed

docs/atl/reference/catltransactionmanager-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class CAtlTransactionManager;
6666

6767
**Header:** atltransactionmanager.h
6868

69-
## <a name="dtor"></a> ~CAtlTransactionManager
69+
## <a name="dtor"></a> ~CAtlTransactionManager
7070

7171
CAtlTransactionManager destructor.
7272

docs/build/cmake-presets-vs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This article contains information about *`CMakePresets.json`* integration with V
1919

2020
We recommend *`CMakePresets.json`* as an alternative to *`CMakeSettings.json`*. Visual Studio never reads from both *`CMakePresets.json`* and *`CMakeSettings.json`* at the same time. To enable or disable *`CMakePresets.json`* integration in Visual Studio, see [Enable `CMakePresets.json` in Visual Studio 2019](#enable-cmakepresets-json-integration).
2121

22-
## Supported CMake and *`CMakePresets.json`* versions
22+
## Supported CMake and *`CMakePresets.json`* versions
2323

2424
The supported *`CMakePresets.json`* and *`CMakeUserPresets.json`* schema versions depend on your version of Visual Studio:
2525
- Visual Studio 2019 version 16.10 and later support schema versions 2 and 3.
@@ -391,7 +391,7 @@ Instead, set the path to `vcpkg.cmake` by using the `VCPKG_ROOT` environment var
391391

392392
If you're already using a CMake toolchain file and want to enable vcpkg integration, see [Using multiple toolchain files](/vcpkg/users/buildsystems/cmake-integration#using-multiple-toolchain-files). Follow those instructions to use an external toolchain file with a project by using vcpkg.
393393

394-
## Variable substitution in *`launch.vs.json`* and *`tasks.vs.json`*
394+
## Variable substitution in *`launch.vs.json`* and *`tasks.vs.json`*
395395

396396
*`CMakePresets.json`* supports variable substitution in *`launch.vs.json`* and *`tasks.vs.json`*. Here are some considerations:
397397

docs/c-runtime-library/reference/itoa-s-itow-s.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ f1_keywords: ["_itoa_s", "_ltoa_s", "_ultoa_s", "_i64toa_s", "_ui64toa_s", "_ito
1010
helpviewer_keywords: ["_ui64toa_s function", "_itow_s function", "_i64tow_s function", "_itot_s function", "converting integers", "itow_s function", "i64toa_s function", "_ui64tow_s function", "integers, converting", "_i64tot_s function", "itoa_s function", "_itoa_s function", "ui64toa_s function", "i64tow_s function", "converting numbers, to strings", "_ui64tot_s function", "_i64toa_s function"]
1111
ms.assetid: eb746581-bff3-48b5-a973-bfc0a4478ecf
1212
---
13-
# `_itoa_s`, `_ltoa_s`, `_ultoa_s`, `_i64toa_s`, `_ui64toa_s`, `_itow_s`, `_ltow_s`, `_ultow_s`, `_i64tow_s`, `_ui64tow_s`
13+
# `_itoa_s`, `_ltoa_s`, `_ultoa_s`, `_i64toa_s`, `_ui64toa_s`, `_itow_s`, `_ltow_s`, `_ultow_s`, `_i64tow_s`, `_ui64tow_s`
1414

1515
Converts an integer to a string. These functions are versions of the [`_itoa`, `_itow` functions](itoa-itow.md) with security enhancements as described in [Security features in the CRT](../security-features-in-the-crt.md).
1616

docs/code-quality/c26433.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Warnings show up on function definitions, not declarations. It may be confusing,
2525

2626
Code analysis name: `OVERRIDE_EXPLICITLY`
2727

28-
## Example: Implicit overriding
28+
## Example: Implicit overriding
2929

3030
```cpp
3131
class Shape {

docs/cpp/basic-concepts-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.date: "12/11/2019"
66
helpviewer_keywords: ["C++, basic language concepts"]
77
ms.assetid: 961801e6-2ffd-4bf1-bb71-7f55e48d9c79
88
---
9-
# Basic Concepts (C++)
9+
# Basic Concepts (C++)
1010

1111
This section explains concepts that are critical to understanding C++. C programmers will be familiar with many of these concepts, but there are some subtle differences that can cause unexpected program results. The following topics are included:
1212

docs/cpp/functions-with-variable-argument-lists-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: "Functions with Variable Argument Lists (C++)"
44
ms.date: 05/01/2025
55
helpviewer_keywords: ["arguments [C++], variable number of", "variable argument lists", "declarators, functions", "argument lists [C++], variable number of", "declaring functions [C++], variables", "function calls, variable number of arguments"]
66
---
7-
# Functions with Variable Argument Lists (C++)
7+
# Functions with Variable Argument Lists (C++)
88

99
Function declarations that have ellipsis (...) as the last argument take a variable number of arguments. C++ provides type checking only for the explicitly declared arguments. You can use variable argument lists when the number and types of arguments to the function can vary. The `printf` family of functions is an example of functions that have variable argument lists.
1010

docs/cppcx/platform-stringreference-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ A reference to an object of type `StringReference`.
140140

141141
Because `StringReference` is a standard C++ class and not a ref class, it does not appear in the **Object Browser**.
142142

143-
## <a name="operator-call"></a> StringReference::operator() Operator
143+
## <a name="operator-call"></a> StringReference::operator() Operator
144144

145145
Converts a `StringReference` object to a `Platform::String^` object.
146146

docs/data/catalog-information-mfc-data-access.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.date: "11/04/2016"
55
helpviewer_keywords: ["tables [C++], catalog information", "tables [C++]", "ODBC [C++], catalog information", "catalog information database [C++]", "databases [C++], catalog information database"]
66
ms.assetid: c184e80f-ff17-409f-9df8-05275080bb8d
77
---
8-
# Catalog Information (MFC Data Access)
8+
# Catalog Information (MFC Data Access)
99

1010
Information about the tables in a data source can include the names of tables and the columns in them, table privileges, names of primary and foreign keys, information about predefined queries or stored procedures, information about indexes on tables, and statistics about tables.
1111

docs/data/changes-you-might-make-to-the-default-code-mfc-data-access.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: "Learn more about: Changes You Might Make to the Default Code (MFC
44
ms.date: "11/04/2016"
55
helpviewer_keywords: ["record views [C++], customizing default code"]
66
---
7-
# Changes You Might Make to the Default Code (MFC Data Access)
7+
# Changes You Might Make to the Default Code (MFC Data Access)
88

99
The [MFC Application Wizard](../mfc/reference/database-support-mfc-application-wizard.md) writes a recordset class for you that selects all records in a single table. You will often want to modify that behavior in one or more of the following ways:
1010

docs/data/command-handlers-for-record-scrolling-mfc-data-access.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.date: "11/04/2016"
55
helpviewer_keywords: ["record views [C++], scrolling", "record scrolling [C++]", "scrolling records"]
66
ms.assetid: f8b13477-2a37-459e-a30c-806fb78165ac
77
---
8-
# Command Handlers for Record Scrolling (MFC Data Access)
8+
# Command Handlers for Record Scrolling (MFC Data Access)
99

1010
The [CRecordView](../mfc/reference/crecordview-class.md) class provides default command handling for the following standard commands:
1111

0 commit comments

Comments
 (0)