@@ -98,7 +98,6 @@ mod as_keyword {}
98
98
/// [Reference on "break expression"]: ../reference/expressions/loop-expr.html#break-expressions
99
99
/// [Reference on "break and loop values"]:
100
100
/// ../reference/expressions/loop-expr.html#break-and-loop-values
101
- ///
102
101
mod break_keyword { }
103
102
104
103
#[ doc( keyword = "const" ) ]
@@ -336,7 +335,6 @@ mod else_keyword {}
336
335
/// For more information, take a look at the [Rust Book] or the [Reference]
337
336
///
338
337
/// [ADT]: https://en.wikipedia.org/wiki/Algebraic_data_type
339
- /// [`Option`]: option/enum.Option.html
340
338
/// [Rust Book]: ../book/ch06-01-defining-an-enum.html
341
339
/// [Reference]: ../reference/items/enumerations.html
342
340
mod enum_keyword { }
@@ -534,7 +532,6 @@ mod fn_keyword {}
534
532
/// [`in`]: keyword.in.html
535
533
/// [`impl`]: keyword.impl.html
536
534
/// [higher-ranked trait bounds]: ../reference/trait-bounds.html#higher-ranked-trait-bounds
537
- /// [`IntoIterator`]: iter/trait.IntoIterator.html
538
535
/// [Rust book]:
539
536
/// ../book/ch03-05-control-flow.html#looping-through-a-collection-with-for
540
537
/// [Reference]: ../reference/expressions/loop-expr.html#iterator-loops
@@ -993,7 +990,6 @@ mod mod_keyword {}
993
990
/// For more information on the `move` keyword, see the [closure]'s section
994
991
/// of the Rust book or the [threads] section
995
992
///
996
- /// [`Fn` trait]: ../std/ops/trait.Fn.html
997
993
/// [closure]: ../book/ch13-01-closures.html
998
994
/// [threads]: ../book/ch16-01-threads.html#using-move-closures-with-threads
999
995
mod move_keyword { }
@@ -1413,9 +1409,7 @@ mod self_upper_keyword {}
1413
1409
/// [`extern`]: keyword.extern.html
1414
1410
/// [`mut`]: keyword.mut.html
1415
1411
/// [`unsafe`]: keyword.unsafe.html
1416
- /// [`drop`]: mem/fn.drop.html
1417
- /// [`Sync`]: marker/trait.Sync.html
1418
- /// [`RefCell`]: cell/struct.RefCell.html
1412
+ /// [`RefCell`]: cell::RefCell
1419
1413
/// [Reference]: ../reference/items/static-items.html
1420
1414
mod static_keyword { }
1421
1415
@@ -1522,7 +1516,7 @@ mod static_keyword {}
1522
1516
/// For more information on structs, take a look at the [Rust Book][book] or the
1523
1517
/// [Reference][reference].
1524
1518
///
1525
- /// [`PhantomData`]: marker/struct. PhantomData.html
1519
+ /// [`PhantomData`]: marker:: PhantomData
1526
1520
/// [book]: ../book/ch05-01-defining-structs.html
1527
1521
/// [reference]: ../reference/items/structs.html
1528
1522
mod struct_keyword { }
@@ -1733,8 +1727,6 @@ mod super_keyword {}
1733
1727
/// [`for`]: keyword.for.html
1734
1728
/// [`impl`]: keyword.impl.html
1735
1729
/// [`unsafe`]: keyword.unsafe.html
1736
- /// [`Send`]: marker/trait.Send.html
1737
- /// [`Sync`]: marker/trait.Sync.html
1738
1730
/// [Ref-Traits]: ../reference/items/traits.html
1739
1731
/// [Ref-Trait-Objects]: ../reference/types/trait-object.html
1740
1732
mod trait_keyword { }
@@ -1764,7 +1756,6 @@ mod trait_keyword {}
1764
1756
/// [`while`]: keyword.while.html
1765
1757
/// [`match`]: ../reference/expressions/match-expr.html#match-guards
1766
1758
/// [`false`]: keyword.false.html
1767
- /// [`bool`]: primitive.bool.html
1768
1759
mod true_keyword { }
1769
1760
1770
1761
#[ doc( keyword = "type" ) ]
@@ -1986,9 +1977,6 @@ mod type_keyword {}
1986
1977
/// [`static`]: keyword.static.html
1987
1978
/// [`union`]: keyword.union.html
1988
1979
/// [`impl`]: keyword.impl.html
1989
- /// [Send]: marker/trait.Send.html
1990
- /// [Sync]: marker/trait.Sync.html
1991
- /// [`Vec::set_len`]: vec/struct.Vec.html#method.set_len
1992
1980
/// [raw pointers]: ../reference/types/pointer.html
1993
1981
/// [memory safety]: ../book/ch19-01-unsafe-rust.html
1994
1982
/// [Rustnomicon]: ../nomicon/index.html
@@ -2178,7 +2166,7 @@ mod where_keyword {}
2178
2166
///
2179
2167
/// It is available for use in stable rust from version 1.39 onwards.
2180
2168
///
2181
- /// [`Future`]: ./ future/trait. Future.html
2169
+ /// [`Future`]: future:: Future
2182
2170
/// [async book]: https://rust-lang.github.io/async-book/
2183
2171
mod async_keyword { }
2184
2172
@@ -2197,7 +2185,7 @@ mod async_keyword {}
2197
2185
///
2198
2186
/// It is available for use in stable rust from version 1.39 onwards.
2199
2187
///
2200
- /// [`Future`]: ./ future/trait. Future.html
2188
+ /// [`Future`]: future:: Future
2201
2189
/// [async book]: https://rust-lang.github.io/async-book/
2202
2190
mod await_keyword { }
2203
2191
0 commit comments