Skip to content
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

Rollup of 8 pull requests #91061

Closed
wants to merge 29 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
7a47786
Makes docs for references a little less confusing
WaffleLapkin Aug 26, 2021
9a4530b
Update library/std/src/primitive_docs.rs
WaffleLapkin Aug 26, 2021
26aec6c
Update core primitives_docs.rs up to date with std
WaffleLapkin Oct 10, 2021
8f6fa4f
Add a regression test for #87573
JohnTitor Nov 16, 2021
f5dc388
Point at source of trait bound obligations in more places
estebank Oct 5, 2021
3fe48b2
Change `trait_defs.rs` incremental hash test
estebank Oct 6, 2021
412793f
Point at bounds when comparing impl items to trait
estebank Oct 6, 2021
abf70a9
Do not mention associated items when they introduce an obligation
estebank Oct 12, 2021
a6b31eb
Align multiline messages to their label (add left margin)
estebank Oct 13, 2021
70e8240
Point at `impl` blocks when they introduce unmet obligations
estebank Oct 13, 2021
8d443ea
Suggest constraining `fn` type params when appropriate
estebank Oct 13, 2021
1cadfe6
Move tests for missing trait bounds to their own directory
estebank Oct 14, 2021
2c173af
review comments
estebank Nov 18, 2021
a8dcc87
Move tests from ui directory
estebank Nov 18, 2021
2f1a1f5
fix CTFE/Miri simd_insert/extract on array-style repr(simd) types
RalfJung Nov 18, 2021
0304e16
CTFE SIMD: also test 1-element array
RalfJung Nov 18, 2021
214ad2f
rustdoc doctest: detect `fn main` after an unexpected semicolon
notriddle Nov 18, 2021
592178c
Put back removed empty line
GuillaumeGomez Nov 19, 2021
cdb0c29
Remove unnecessary doc links
WaffleLapkin Nov 19, 2021
a2d7857
Turn all 0x1b_u8 into '\x1b' or b'\x1b'
wooster0 Nov 19, 2021
0ae053a
rustdoc: Fix some unescaped HTML tags in docs
camelid Nov 19, 2021
6df0106
Rollup merge of #88361 - WaffleLapkin:patch-2, r=jyn514
matthiaskrgr Nov 19, 2021
de4775f
Rollup merge of #89580 - estebank:trait-bounds-are-tricky, r=nagisa
matthiaskrgr Nov 19, 2021
79eeb69
Rollup merge of #90956 - JohnTitor:issue-87573, r=Mark-Simulacrum
matthiaskrgr Nov 19, 2021
0ecf096
Rollup merge of #90999 - RalfJung:miri_simd, r=oli-obk
matthiaskrgr Nov 19, 2021
b01e807
Rollup merge of #91026 - notriddle:notriddle/rustdoc-doctest-semicolo…
matthiaskrgr Nov 19, 2021
f0e2042
Rollup merge of #91035 - GuillaumeGomez:put-back-removed-empty-line, …
matthiaskrgr Nov 19, 2021
774a884
Rollup merge of #91044 - r00ster91:x1b, r=joshtriplett
matthiaskrgr Nov 19, 2021
e47fe9c
Rollup merge of #91054 - camelid:fix-tags, r=GuillaumeGomez
matthiaskrgr Nov 19, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unnecessary doc links
  • Loading branch information
WaffleLapkin committed Nov 19, 2021
commit cdb0c29a9cf83db18906d7da7e2dbb581044a633
2 changes: 0 additions & 2 deletions library/core/src/primitive_docs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1108,7 +1108,6 @@ mod prim_usize {}
///
/// [`Deref`]: ops::Deref
/// [`Borrow`]: borrow::Borrow
/// [`fmt::Pointer`]: fmt::Pointer
///
/// `&mut T` references get all of the above except `Copy` and `Clone` (to prevent creating
/// multiple simultaneous mutable borrows), plus the following, regardless of the type of its
Expand Down Expand Up @@ -1136,7 +1135,6 @@ mod prim_usize {}
/// * [`Send`] \(`&T` references also require <code>T: [Sync]</code>)
///
/// [`std::fmt`]: fmt
/// [`fmt::Pointer`]: fmt::Pointer
/// [`Hash`]: hash::Hash
#[doc = concat!("[`ToSocketAddrs`]: ", include_str!("../primitive_docs/net_tosocketaddrs.md"))]
///
Expand Down
2 changes: 0 additions & 2 deletions library/std/src/primitive_docs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1108,7 +1108,6 @@ mod prim_usize {}
///
/// [`Deref`]: ops::Deref
/// [`Borrow`]: borrow::Borrow
/// [`fmt::Pointer`]: fmt::Pointer
///
/// `&mut T` references get all of the above except `Copy` and `Clone` (to prevent creating
/// multiple simultaneous mutable borrows), plus the following, regardless of the type of its
Expand Down Expand Up @@ -1136,7 +1135,6 @@ mod prim_usize {}
/// * [`Send`] \(`&T` references also require <code>T: [Sync]</code>)
///
/// [`std::fmt`]: fmt
/// [`fmt::Pointer`]: fmt::Pointer
/// [`Hash`]: hash::Hash
#[doc = concat!("[`ToSocketAddrs`]: ", include_str!("../primitive_docs/net_tosocketaddrs.md"))]
///
Expand Down