File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ language:
32
32
[ machine types ] : #machine-types
33
33
[ machine-dependent integer types ] : #machine-dependent-integer-types
34
34
[ textual types ] : #textual-types
35
- [ never- type ] : #never-type
35
+ [ never type ] : #never-type
36
36
[ Tuples ] : #tuple-types
37
37
[ Arrays ] : #array-and-slice-types
38
38
[ Slices ] : #array-and-slice-types
@@ -432,7 +432,7 @@ order to capture a single field:
432
432
433
433
``` rust
434
434
# use std :: collections :: HashSet ;
435
- #
435
+ #
436
436
struct SetVec {
437
437
set : HashSet <u32 >,
438
438
vec : Vec <u32 >
@@ -554,7 +554,7 @@ traits except the first trait must be auto traits, there may not be more than
554
554
one lifetime, and opt-out bounds (e.g. ` ?sized ` ) are not allowed. Furthermore,
555
555
paths to traits may be parenthesized.
556
556
557
- For example, given a trait ` Trait ` , the following are all trait objects:
557
+ For example, given a trait ` Trait ` , the following are all trait objects:
558
558
559
559
* ` Trait `
560
560
* ` dyn Trait `
You can’t perform that action at this time.
0 commit comments