Skip to content

Commit 30839ff

Browse files
authored
Add backticks in <string_view> operators reference
1 parent 9d63f57 commit 30839ff

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

docs/standard-library/string-view-operators.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ bool operator!=(
3232
3333
### Parameters
3434
35-
*left*\
35+
*`left`*\
3636
Any convertible string type or an object of type `basic_string_view` to be compared.
3737
38-
*right*\
38+
*`right`*\
3939
Any convertible string type or an object of type `basic_string_view` to be compared.
4040
4141
### Return Value
@@ -71,10 +71,10 @@ bool operator==(
7171

7272
### Parameters
7373

74-
*left*\
74+
*`left`*\
7575
Any convertible string type or an object of type `basic_string_view` to be compared.
7676

77-
*right*\
77+
*`right`*\
7878
Any convertible string type or an object of type `basic_string_view` to be compared.
7979

8080
### Return Value
@@ -110,10 +110,10 @@ bool operator<(
110110
111111
### Parameters
112112
113-
*left*\
113+
*`left`*\
114114
Any convertible string type or an object of type `basic_string_view` to be compared.
115115
116-
*right*\
116+
*`right`*\
117117
Any convertible string type or an object of type `basic_string_view` to be compared.
118118
119119
### Return Value
@@ -122,7 +122,7 @@ Any convertible string type or an object of type `basic_string_view` to be compa
122122
123123
### Remarks
124124
125-
An implicit conversion must exist from *convertible_string_type* to the string_view on the other side.
125+
An implicit conversion must exist from *convertible_string_type* to the `string_view` on the other side.
126126
127127
The comparison is based on a pairwise lexicographical comparison of the character sequences. When the first unequal pair of characters is encountered, the result of that comparison is returned. If no unequal characters are found, but one sequence is shorter, the shorter sequence is less than the longer one. In other words, "cat" is less than "cats".
128128
@@ -171,10 +171,10 @@ bool operator<=(
171171
172172
### Parameters
173173
174-
*left*\
174+
*`left`*\
175175
Any convertible string type or an object of type `basic_string_view` to be compared.
176176
177-
*right*\
177+
*`right`*\
178178
Any convertible string type or an object of type `basic_string_view` to be compared.
179179
180180
### Return Value
@@ -201,7 +201,7 @@ inline basic_ostream<CharType, Traits>& operator<<(
201201
an output stream being written to.
202202

203203
*`Str`*\
204-
The string_view to be entered into an output stream.
204+
The `string_view` to be entered into an output stream.
205205

206206
### Return Value
207207

@@ -234,10 +234,10 @@ bool operator>(
234234
235235
### Parameters
236236
237-
*left*\
237+
*`left`*\
238238
Any convertible string type or an object of type `basic_string_view` to be compared.
239239
240-
*right*\
240+
*`right`*\
241241
Any convertible string type or an object of type `basic_string_view` to be compared.
242242
243243
### Return Value

0 commit comments

Comments
 (0)