Skip to content

Commit fe7e834

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

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)