File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ many `U+0023` (`#`) characters as were used to start the raw string literal) or
133
133
134
134
Examples for string literals:
135
135
136
- ```
136
+ ``` rust
137
137
" foo" ; r " foo" ; // foo
138
138
" \ " foo\ "" ; r # " "foo"" # ; // "foo"
139
139
@@ -197,7 +197,7 @@ many `U+0023` (`#`) characters as were used to start the raw string literal) or
197
197
198
198
Examples for byte string literals:
199
199
200
- ```
200
+ ``` rust
201
201
b " foo" ; br " foo" ; // foo
202
202
b " \ " foo\ "" ; br # " "foo"" # ; // "foo"
203
203
@@ -245,7 +245,7 @@ The type of an _unsuffixed_ integer literal is determined by type inference:
245
245
246
246
Examples of integer literals of various forms:
247
247
248
- ```
248
+ ``` rust
249
249
123i32 ; // type i32
250
250
123u32 ; // type u32
251
251
123_u32 ; // type u32
@@ -289,7 +289,7 @@ type inference:
289
289
290
290
Examples of floating-point literals of various forms:
291
291
292
- ```
292
+ ``` rust
293
293
123.0f64 ; // type f64
294
294
0.1f64 ; // type f64
295
295
0.1f32 ; // type f32
You can’t perform that action at this time.
0 commit comments