Skip to content

Commit ef85656

Browse files
committed
Auto merge of #115074 - matthiaskrgr:rollup-au2i7k0, r=matthiaskrgr
Rollup of 3 pull requests Successful merges: - #115044 (stable_mir: docs clarification) - #115054 (Fix syntax in E0191 explanation.) - #115067 (docs: add alias log1p to ln_1p) r? `@ghost` `@rustbot` modify labels: rollup
2 parents fe5f591 + 59d94a9 commit ef85656

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

compiler/rustc_error_codes/src/error_codes/E0191.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ trait Trait {
77
type Bar;
88
}
99
10-
type Foo = Trait; // error: the value of the associated type `Bar` (from
11-
// the trait `Trait`) must be specified
10+
type Foo = dyn Trait; // error: the value of the associated type `Bar` (from
11+
// the trait `Trait`) must be specified
1212
```
1313

1414
Trait objects need to have all associated types specified. Please verify that
@@ -20,5 +20,5 @@ trait Trait {
2020
type Bar;
2121
}
2222
23-
type Foo = Trait<Bar=i32>; // ok!
23+
type Foo = dyn Trait<Bar=i32>; // ok!
2424
```

compiler/rustc_smir/src/stable_mir/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Module that implements the public interface to the Stable MIR.
22
//!
3-
//! This module shall contain all type definitions and APIs that we expect 3P tools to invoke to
3+
//! This module shall contain all type definitions and APIs that we expect third-party tools to invoke to
44
//! interact with the compiler.
55
//!
66
//! The goal is to eventually move this module to its own crate which shall be published on

library/std/src/f32.rs

+1
Original file line numberDiff line numberDiff line change
@@ -822,6 +822,7 @@ impl f32 {
822822
///
823823
/// assert!(abs_difference < 1e-10);
824824
/// ```
825+
#[doc(alias = "log1p")]
825826
#[rustc_allow_incoherent_impl]
826827
#[must_use = "method returns a new number and does not mutate the original value"]
827828
#[stable(feature = "rust1", since = "1.0.0")]

library/std/src/f64.rs

+1
Original file line numberDiff line numberDiff line change
@@ -822,6 +822,7 @@ impl f64 {
822822
///
823823
/// assert!(abs_difference < 1e-20);
824824
/// ```
825+
#[doc(alias = "log1p")]
825826
#[rustc_allow_incoherent_impl]
826827
#[must_use = "method returns a new number and does not mutate the original value"]
827828
#[stable(feature = "rust1", since = "1.0.0")]

0 commit comments

Comments
 (0)