Skip to content

Commit 469ab7c

Browse files
authored
code escape params to avoid machine translation
1 parent 8ac274f commit 469ab7c

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

docs/standard-library/system-error-operators.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "<system_error> operators"
33
description: "Learn more about: <system_error> operators"
4-
ms.date: "11/04/2016"
4+
ms.date: "3/17/2025"
55
f1_keywords: ["system_error/std::operator!=", "system_error/std::operator=="]
66
---
77
# `<system_error>` operators
@@ -23,11 +23,11 @@ bool operator==(const error_condition& left,
2323

2424
### Parameters
2525

26-
*left*\
27-
The object to be tested for equality.
26+
*`left`*\
27+
The object to test for equality.
2828

29-
*right*\
30-
The object to be tested for equality.
29+
*`right`*\
30+
The object to test for equality.
3131

3232
### Return Value
3333

@@ -50,15 +50,15 @@ bool operator!=(const error_condition& left, const error_condition& right);
5050

5151
### Parameters
5252

53-
*left*\
54-
The object to be tested for inequality.
53+
*`left`*\
54+
The object to test for inequality.
5555

56-
*right*\
57-
The object to be tested for inequality.
56+
*`right`*\
57+
The object to test for inequality.
5858

5959
### Return Value
6060

61-
**`true`** if the object passed in *left* is not equal to the object passed in *right*; otherwise **`false`**.
61+
**`true`** if the object passed in *left* is not equal to the object passed in *`right`*; otherwise **`false`**.
6262

6363
### Remarks
6464

@@ -94,15 +94,15 @@ inline bool operator<(
9494

9595
### Parameters
9696

97-
*left*\
98-
The object to be compared.
97+
*`left`*\
98+
The object to compare.
9999

100-
*right*\
101-
The object to be compared.
100+
*`right`*\
101+
The object to compare.
102102

103103
### Return Value
104104

105-
**`true`** if the object passed in *left* is less than the object passed in *right*; Otherwise, **`false`**.
105+
**`true`** if the object passed in *`left`* is less than the object passed in *`right`*; Otherwise, **`false`**.
106106

107107
### Remarks
108108

@@ -119,11 +119,11 @@ basic_ostream<charT, traits>& operator<<(basic_ostream<charT, traits>& os, const
119119
120120
### Parameters
121121
122-
*os*\
122+
*`os`*\
123123
The target output stream.
124124
125-
*ec*\
126-
The `error_code` object to be output.
125+
*`ec`*\
126+
The `error_code` object to output.
127127
128128
### Return Value
129129

0 commit comments

Comments
 (0)