Skip to content

Commit 504e44a

Browse files
Fix never type link
1 parent e713055 commit 504e44a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/types.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ language:
3232
[machine types]: #machine-types
3333
[machine-dependent integer types]: #machine-dependent-integer-types
3434
[textual types]: #textual-types
35-
[never-type]: #never-type
35+
[never type]: #never-type
3636
[Tuples]: #tuple-types
3737
[Arrays]: #array-and-slice-types
3838
[Slices]: #array-and-slice-types
@@ -432,7 +432,7 @@ order to capture a single field:
432432

433433
```rust
434434
# use std::collections::HashSet;
435-
#
435+
#
436436
struct SetVec {
437437
set: HashSet<u32>,
438438
vec: Vec<u32>
@@ -554,7 +554,7 @@ traits except the first trait must be auto traits, there may not be more than
554554
one lifetime, and opt-out bounds (e.g. `?sized`) are not allowed. Furthermore,
555555
paths to traits may be parenthesized.
556556

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:
558558

559559
* `Trait`
560560
* `dyn Trait`

0 commit comments

Comments
 (0)