File tree Expand file tree Collapse file tree 6 files changed +3
-8
lines changed Expand file tree Collapse file tree 6 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -854,7 +854,6 @@ impl Display for Arguments<'_> {
854
854
/// }";
855
855
/// assert_eq!(format!("The origin is: {origin:#?}"), expected);
856
856
/// ```
857
-
858
857
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
859
858
#[ rustc_on_unimplemented(
860
859
on(
Original file line number Diff line number Diff line change @@ -436,7 +436,6 @@ pub trait Extend<A> {
436
436
/// **For implementors:** For a collection to unsafely rely on this method's safety precondition (that is,
437
437
/// invoke UB if they are violated), it must implement `extend_reserve` correctly. In other words,
438
438
/// callers may assume that if they `extend_reserve`ed enough space they can call this method.
439
-
440
439
// This method is for internal usage only. It is only on the trait because of specialization's limitations.
441
440
#[ unstable( feature = "extend_one_unchecked" , issue = "none" ) ]
442
441
#[ doc( hidden) ]
Original file line number Diff line number Diff line change 39
39
//! return. You should mark your implementation using `#[panic_handler]`.
40
40
//!
41
41
//! * `rust_eh_personality` - is used by the failure mechanisms of the
42
- //! compiler. This is often mapped to GCC's personality function, but crates
43
- //! which do not trigger a panic can be assured that this function is never
44
- //! called. The `lang` attribute is called `eh_personality`.
42
+ //! compiler. This is often mapped to GCC's personality function, but crates
43
+ //! which do not trigger a panic can be assured that this function is never
44
+ //! called. The `lang` attribute is called `eh_personality`.
45
45
46
46
#![ stable( feature = "core" , since = "1.6.0" ) ]
47
47
#![ doc(
Original file line number Diff line number Diff line change @@ -787,7 +787,6 @@ impl Ipv4Addr {
787
787
/// [IANA IPv4 Special-Purpose Address Registry]: https://www.iana.org/assignments/iana-ipv4-special-registry/iana-ipv4-special-registry.xhtml
788
788
/// [unspecified address]: Ipv4Addr::UNSPECIFIED
789
789
/// [broadcast address]: Ipv4Addr::BROADCAST
790
-
791
790
///
792
791
/// # Examples
793
792
///
Original file line number Diff line number Diff line change @@ -1365,7 +1365,6 @@ mod prim_f16 {}
1365
1365
/// x = a + b + c + d; // As written
1366
1366
/// x = (a + c) + (b + d); // Reordered to shorten critical path and enable vectorization
1367
1367
/// ```
1368
-
1369
1368
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1370
1369
mod prim_f32 { }
1371
1370
Original file line number Diff line number Diff line change @@ -2648,7 +2648,6 @@ impl str {
2648
2648
/// you're trying to parse into.
2649
2649
///
2650
2650
/// `parse` can parse into any type that implements the [`FromStr`] trait.
2651
-
2652
2651
///
2653
2652
/// # Errors
2654
2653
///
You can’t perform that action at this time.
0 commit comments