Skip to content

Commit 9fd340f

Browse files
author
Steve Wishnousky
authored
Fix unescaped <chrono> (MicrosoftDocs#3715)
Noticed this while doing other changes. Without being in a code block, <chrono> becomes the html element of the same name.
1 parent 4c56e1b commit 9fd340f

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

docs/standard-library/chrono.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -82,18 +82,18 @@ Beginning in Visual Studio 2015, the implementation of `steady_clock` has change
8282

8383
|Name|Description|
8484
|-|-|
85-
|[`operator-`](chrono-operators.md#op_minus)|Subtract or negate various <chrono> objects.|
86-
|[`operator!=`](chrono-operators.md#op_neq)|Inequality operator that is used with various <chrono> objects.|
85+
|[`operator-`](chrono-operators.md#op_minus)|Subtract or negate various `<chrono>` objects.|
86+
|[`operator!=`](chrono-operators.md#op_neq)|Inequality operator that is used with various `<chrono>` objects.|
8787
|[`operator modulo`](chrono-operators.md#op_modulo)|Operator for modulo operations on `duration` objects.|
8888
|[`operator*`](chrono-operators.md#op_star)|Multiplication operator for `duration` objects.|
8989
|[`operator/`](chrono-operators.md#op_div)|Division operator for `duration` objects.|
9090
|[`operator/`](chrono-operators.md#op_/)|Provides syntax to create calendar dates.|
91-
|[`operator+`](chrono-operators.md#op_add)|Add to various <chrono> objects.|
92-
|[`operator<`](chrono-operators.md#op_lt)|Determines whether various <chrono> objects are less than another.|
93-
|[`operator<=`](chrono-operators.md#op_lt_eq)|Determines whether various <chrono> objects are less than or equal to another.|
94-
|[`operator==`](chrono-operators.md#op_eq_eq)|Determines whether various <chrono> objects are equal to each other.|
95-
|[`operator>`](chrono-operators.md#op_gt)|Determines whether various <chrono> objects are greater than another.|
96-
|[`operator>=`](chrono-operators.md#op_gt_eq)|Determines whether various <chrono> objects are greater than or equal to another.|
91+
|[`operator+`](chrono-operators.md#op_add)|Add to various `<chrono>` objects.|
92+
|[`operator<`](chrono-operators.md#op_lt)|Determines whether various `<chrono>` objects are less than another.|
93+
|[`operator<=`](chrono-operators.md#op_lt_eq)|Determines whether various `<chrono>` objects are less than or equal to another.|
94+
|[`operator==`](chrono-operators.md#op_eq_eq)|Determines whether various `<chrono>` objects are equal to each other.|
95+
|[`operator>`](chrono-operators.md#op_gt)|Determines whether various `<chrono>` objects are greater than another.|
96+
|[`operator>=`](chrono-operators.md#op_gt_eq)|Determines whether various `<chrono>` objects are greater than or equal to another.|
9797

9898
## Typedefs (Predefined duration types)
9999

0 commit comments

Comments
 (0)