-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix typo in task::Waker #65336
Fix typo in task::Waker #65336
Conversation
r? @dtolnay (rust_highfive has picked a reviewer for you, use r? to override) |
This was introduced in https://github.com/rust-lang/rust/pull/62086/files#diff-5573182938909e346b0dfe09641235e1. What does it mean? |
It appears there are several other cases of it in that diff just searching for |
Undisambiguated Both That said, rustdoc rendering the disambiguated form as literally |
Thanks! I filed #65354 to fix the issue in rustdoc. |
@bors r+ |
📌 Commit 37018e0 has been approved by |
Fix typo in task::Waker fixes rust-lang#65323 in `libstd/error.rs` there are a few mentions of `trait@Send` and `trait@Sync`. Are they wrong as well?
Fix typo in task::Waker fixes rust-lang#65323 in `libstd/error.rs` there are a few mentions of `trait@Send` and `trait@Sync`. Are they wrong as well?
Rollup of 10 pull requests Successful merges: - #65214 (Split non-CAS atomic support off into target_has_atomic_load_store) - #65246 (vxWorks: implement get_path() and get_mode() for File fmt::Debug) - #65312 (improve performance of signed saturating_mul) - #65336 (Fix typo in task::Waker) - #65346 (nounwind tests and cleanup) - #65347 (Fix #[unwind(abort)] with Rust ABI) - #65366 (Implement Error::source on IntoStringError + Remove superfluous cause impls) - #65369 (Don't discard value names when using address or memory sanitizer) - #65370 (Add `dyn` to `Any` documentation) - #65373 (Fix typo in docs for `Rc`) Failed merges: r? @ghost
fixes #65323
in
libstd/error.rs
there are a few mentions oftrait@Send
andtrait@Sync
. Are they wrong as well?