Skip to content

Commit 4074e08

Browse files
committed
Auto merge of rust-lang#101167 - matthiaskrgr:rollup-yt3jdmp, r=matthiaskrgr
Rollup of 7 pull requests Successful merges: - rust-lang#100898 (Do not report too many expr field candidates) - rust-lang#101056 (Add the syntax of references to their documentation summary.) - rust-lang#101106 (Rustdoc-Json: Retain Stripped Modules when they are imported, not when they have items) - rust-lang#101131 (CTFE: exposing pointers and calling extern fn is just impossible) - rust-lang#101141 (Simplify `get_trait_ref` fn used for `virtual_function_elimination`) - rust-lang#101146 (Various changes to logging of borrowck-related code) - rust-lang#101156 (Remove `Sync` requirement from lint pass objects) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents ddbb2b9 + 8de30cd commit 4074e08

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/src/primitive_docs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1223,7 +1223,7 @@ mod prim_usize {}
12231223
#[doc(alias = "&")]
12241224
#[doc(alias = "&mut")]
12251225
//
1226-
/// References, both shared and mutable.
1226+
/// References, `&T` and `&mut T`.
12271227
///
12281228
/// A reference represents a borrow of some owned value. You can get one by using the `&` or `&mut`
12291229
/// operators on a value, or by using a [`ref`](../std/keyword.ref.html) or

std/src/primitive_docs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1223,7 +1223,7 @@ mod prim_usize {}
12231223
#[doc(alias = "&")]
12241224
#[doc(alias = "&mut")]
12251225
//
1226-
/// References, both shared and mutable.
1226+
/// References, `&T` and `&mut T`.
12271227
///
12281228
/// A reference represents a borrow of some owned value. You can get one by using the `&` or `&mut`
12291229
/// operators on a value, or by using a [`ref`](../std/keyword.ref.html) or

0 commit comments

Comments
 (0)