Skip to content

Commit e68b2dd

Browse files
authored
Merge pull request #5718 from Rageking8/elide-stray-escapes-in-columns
Elide stray escapes in columns
2 parents b15fb16 + df9fd88 commit e68b2dd

File tree

4 files changed

+13
-15
lines changed

4 files changed

+13
-15
lines changed

docs/assembler/masm/option-language-masm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
description: Learn more about the alternatives for the OPTION LANGUAGE directive
32
title: "OPTION LANGUAGE"
3+
description: "Learn more about the alternatives for the OPTION LANGUAGE directive"
44
ms.date: 09/21/2021
55
f1_keywords: ["language"]
66
helpviewer_keywords: ["OPTION LANGUAGE directive"]
@@ -20,11 +20,11 @@ Available languages include:
2020
:::row:::
2121
:::column span="":::
2222
**`C`**\
23-
**`SYSCALL`**\
23+
**`SYSCALL`**
2424
:::column-end:::
2525
:::column span="":::
2626
**`STDCALL`**\
27-
**`PASCAL`**\
27+
**`PASCAL`**
2828
:::column-end:::
2929
:::column span="":::
3030
**`FORTRAN`**\

docs/c-runtime-library/ismbb-routines.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
description: "Learn more about: _ismbb routines"
32
title: "_ismbb routines"
3+
description: "Learn more about: _ismbb routines"
44
ms.date: 01/11/2022
55
helpviewer_keywords: ["ismbb routines", "_ismbb routines"]
66
---
@@ -21,7 +21,7 @@ Tests the given integer value `c` for a particular condition, by using the curre
2121
[`_ismbblead`, `_ismbblead_l`](./reference/ismbblead-ismbblead-l.md)\
2222
[`_ismbbprint`, `_ismbbprint_l`](./reference/ismbbprint-ismbbprint-l.md)\
2323
[`_ismbbpunct`, `_ismbbpunct_l`](./reference/ismbbpunct-ismbbpunct-l.md)\
24-
[`_ismbbtrail`, `_ismbbtrail_l`](./reference/ismbbtrail-ismbbtrail-l.md)\
24+
[`_ismbbtrail`, `_ismbbtrail_l`](./reference/ismbbtrail-ismbbtrail-l.md)
2525
:::column-end:::
2626
:::row-end:::
2727

docs/dotnet/stl-clr-library-reference.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
2-
description: "Learn more about: STL/CLR Library Reference"
32
title: "STL/CLR Library Reference"
3+
description: "Learn more about: STL/CLR Library Reference"
44
ms.date: 09/18/2018
55
ms.topic: "reference"
66
helpviewer_keywords: ["STL/CLR Library", "STL/CLR, redistribution", "cliext directory"]
7-
ms.assetid: a9d9ca00-7bf2-48c1-b205-3ae6f8c25f82
87
---
98
# STL/CLR Library Reference
109

@@ -51,7 +50,7 @@ In addition, this section also describes the following components of STL/CLR:
5150
[`hash_multimap` (STL/CLR)](../dotnet/hash-multimap-stl-clr.md)\
5251
[`hash_multiset` (STL/CLR)](../dotnet/hash-multiset-stl-clr.md)\
5352
[`hash_set` (STL/CLR)](../dotnet/hash-set-stl-clr.md)\
54-
[`list` (STL/CLR)](../dotnet/list-stl-clr.md)\
53+
[`list` (STL/CLR)](../dotnet/list-stl-clr.md)
5554
:::column-end:::
5655
:::column span="":::
5756
[`map` (STL/CLR)](../dotnet/map-stl-clr.md)\
@@ -63,7 +62,7 @@ In addition, this section also describes the following components of STL/CLR:
6362
[`set` (STL/CLR)](../dotnet/set-stl-clr.md)\
6463
[`stack` (STL/CLR)](../dotnet/stack-stl-clr.md)\
6564
[`utility` (STL/CLR)](../dotnet/utility-stl-clr.md)\
66-
[`vector` (STL/CLR)](../dotnet/vector-stl-clr.md)\
65+
[`vector` (STL/CLR)](../dotnet/vector-stl-clr.md)
6766
:::column-end:::
6867
:::row-end:::
6968

docs/standard-library/type-traits.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
2-
description: "Learn more about: <type_traits>"
32
title: "<type_traits>"
4-
ms.date: "02/21/2019"
3+
description: "Learn more about: <type_traits>"
4+
ms.date: 02/21/2019
55
f1_keywords: ["<type_traits>"]
66
helpviewer_keywords: ["typetrait header", "type_traits"]
7-
ms.assetid: 2260b51f-8160-4c66-a82f-00b534cb60d4
87
---
98
# `<type_traits>`
109

@@ -44,7 +43,7 @@ These are the provided aliases for the `type` members:
4443
`add_rvalue_reference_t`\
4544
`add_volatile_t`\
4645
`aligned_storage_t`\
47-
`aligned_union_t`\
46+
`aligned_union_t`
4847
:::column-end:::
4948
:::column:::
5049
`common_type_t`\
@@ -54,7 +53,7 @@ These are the provided aliases for the `type` members:
5453
`invoke_result_t`\
5554
`make_signed_t`\
5655
`make_unsigned_t`\
57-
`remove_all_extents_t`\
56+
`remove_all_extents_t`
5857
:::column-end:::
5958
:::column:::
6059
`remove_const_t`\
@@ -64,7 +63,7 @@ These are the provided aliases for the `type` members:
6463
`remove_reference_t`\
6564
`remove_volatile_t`\
6665
`result_of_t`\
67-
`underlying_type_t`\
66+
`underlying_type_t`
6867
:::column-end:::
6968
:::row-end:::
7069

0 commit comments

Comments
 (0)