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 13 pull requests #78759

Closed
wants to merge 37 commits into from
Closed

Commits on Oct 17, 2020

  1. Configuration menu
    Copy the full SHA
    4af560e View commit details
    Browse the repository at this point in the history
  2. Rebase conflicts

    poliorcetics committed Oct 17, 2020
    Configuration menu
    Copy the full SHA
    85afbd8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4fd06b9 View commit details
    Browse the repository at this point in the history
  4. Move vec swap test

    poliorcetics committed Oct 17, 2020
    Configuration menu
    Copy the full SHA
    42271a5 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1bdee96 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    20e032e View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2020

  1. Configuration menu
    Copy the full SHA
    251f6da View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2020

  1. Change as_str → to_string in proc_macro::Ident::span() docs

    There is no `as_str` function on Ident any more.
    
    Also change it to an intra doc link while we're at it.
    est31 committed Oct 29, 2020
    Configuration menu
    Copy the full SHA
    e4d1096 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2020

  1. Configuration menu
    Copy the full SHA
    300362e View commit details
    Browse the repository at this point in the history
  2. Allow the theme picker to work with arrow keys

    This is mostly motivated by docs.rs. It's really weird
    when arrow keys work in the top dropdown menu, but don't work
    in other dropdown menus on the same page.
    notriddle committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    ac3a434 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6918a17 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    90c7c63 View commit details
    Browse the repository at this point in the history
  5. Pull theme picker keyboard code into main.js

    Most of the code in mod.rs should be code that really needs to have
    the list of available themes inlined into it.
    notriddle committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    17b8ca9 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2020

  1. Configuration menu
    Copy the full SHA
    5801109 View commit details
    Browse the repository at this point in the history
  2. Fix outdated comment next to array_impl_default

    The comment has become outdated as the array_impl macro
    has been removed.
    est31 committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    93fa023 View commit details
    Browse the repository at this point in the history
  3. fix a couple of clippy warnings:

    filter_next
    manual_strip
    redundant_static_lifetimes
    single_char_pattern
    unnecessary_cast
    unused_unit
    op_ref
    redundant_closure
    useless_conversion
    matthiaskrgr committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    bcd2f2d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    69e5729 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    232b9ba View commit details
    Browse the repository at this point in the history
  6. ci: bump actions/checkout to version 2

    This was recommended by GitHub Support to try reducing the things that
    could've caused rust-lang#78743. I checked the changelog and there should be no
    practical impact for us (we already set an explicit fetch-depth).
    pietroalbini committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    308dbdd View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2020

  1. Configuration menu
    Copy the full SHA
    d8afe98 View commit details
    Browse the repository at this point in the history
  2. Don't use crate in link text

    `crate::` -> `core::`
    
    It looks weird to have `crate::` in the link text and we use the actual
    crate name everywhere else.
    
    If anyone is curious, I used this Vim command to update all the links:
    
        %s/\(\s\)\[`crate::\(.*\)`\]/\1[`core::\2`](crate::\2)/g
    camelid committed Nov 5, 2020
    Configuration menu
    Copy the full SHA
    3084a55 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bbdb1f0 View commit details
    Browse the repository at this point in the history
  4. Add missing comma

    'Note however,' -> 'Note, however,'
    camelid committed Nov 5, 2020
    Configuration menu
    Copy the full SHA
    677b2ac View commit details
    Browse the repository at this point in the history
  5. Fixed typo in comment

    paramter -> parameter
    eltociear committed Nov 5, 2020
    Configuration menu
    Copy the full SHA
    873ebcb View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#76718 - poliorcetics:vec-ui-to-unit-test, r…

    …=jyn514
    
    Move Vec UI tests to unit tests when possible
    
    Helps with rust-lang#76268.
    
    I'm moving the tests using `Vec` or `VecDeque`.
    
    `@rustbot` modify labels: A-testsuite C-cleanup T-libs
    JohnTitor committed Nov 5, 2020
    Configuration menu
    Copy the full SHA
    30bb1f9 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#76765 - guswynn:async_return, r=tmandry

    Make it more clear what an about async fn's returns when referring to what it returns
    
    see rust-lang#76547
    
    This is *likely* not the ONLY place that this happens to be unclear, but we can move this fn to rustc_middle or something like that and reuse it if need be, to apply it to more diagnostics
    
    One outstanding question I have is, if the fn returns (), should I make the message more clear (what about `fn f()` vs `fn f() -> ()`, can you tell those apart in the hir?)
    
    R? `@tmandry`
    
    `@rustbot` modify labels +A-diagnostics +T-compiler
    JohnTitor committed Nov 5, 2020
    Configuration menu
    Copy the full SHA
    dea29bd View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#78093 - camelid:as-cleanup, r=jyn514

    Clean up docs for 'as' keyword
    JohnTitor committed Nov 5, 2020
    Configuration menu
    Copy the full SHA
    d44e165 View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#78465 - est31:proc_macro_to_string, r=jyn514

    Change as_str → to_string in proc_macro::Ident::span() docs
    
    There is no `as_str` function on Ident any more.
    
    Also change it to an intra doc link while we're at it.
    JohnTitor committed Nov 5, 2020
    Configuration menu
    Copy the full SHA
    c961d75 View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#78584 - notriddle:master, r=GuillaumeGomez

    Add keyboard handling to the theme picker menu
    
    This PR is mostly designed to bring the theme picker closer to feature parity with the menu bar from docs.rs. Though the rustdoc theme picker is technically already usable from the keyboard, it's really weird that arrow keys work on some of the menus, but not all of them, in the exact same page.
    JohnTitor committed Nov 5, 2020
    Configuration menu
    Copy the full SHA
    82ba395 View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#78716 - est31:array_traits, r=Dylan-DPC

    Array trait impl comment/doc fixes
    
    Two small doc/comment fixes regarding trait implementations on arrays.
    JohnTitor committed Nov 5, 2020
    Configuration menu
    Copy the full SHA
    c0318b6 View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#78727 - liketechnik:issue-55201, r=Guillaum…

    …eGomez
    
    (rustdoc) fix test for trait impl display
    
    The test checks that parameters and return values with `impl Trait` types are correctly generated in rustdoc's output.
    
    In essence, the previous version of the test checked the absence of values that would never be generated by rustdoc, so it could basically never fail. These values were adjusted to the expected output and are now required to exist in rustdoc's output. See rust-lang#55201 (comment) for a detailed explanation of the reasoning behind the changes.
    
    Note that the output of rustdoc for `impl Trait`s in parameters and return values did not change since the inital test creation, so this PR only modifies the test.
    
    Closes rust-lang#55201
    JohnTitor committed Nov 5, 2020
    Configuration menu
    Copy the full SHA
    0878abd View commit details
    Browse the repository at this point in the history
  13. Rollup merge of rust-lang#78733 - matthiaskrgr:cl11ppy, r=jyn514

    fix a couple of clippy warnings:
    
    filter_next
    manual_strip
    redundant_static_lifetimes
    single_char_pattern
    unnecessary_cast
    unused_unit
    op_ref
    redundant_closure
    useless_conversion
    JohnTitor committed Nov 5, 2020
    Configuration menu
    Copy the full SHA
    08e60c6 View commit details
    Browse the repository at this point in the history
  14. Rollup merge of rust-lang#78735 - danielhenrymantilla:simplify-unsafe…

    …cell-getmut, r=RalfJung
    
    Simplify the implementation of `get_mut` (no unsafe)
    
    Quick PR to reduce one use of `unsafe` pointed out in the previous PR
    
    r? `@RalfJung`
    JohnTitor committed Nov 5, 2020
    Configuration menu
    Copy the full SHA
    41d11a1 View commit details
    Browse the repository at this point in the history
  15. Rollup merge of rust-lang#78738 - sasurau4:test/move-range-test-to-li…

    …brary-core, r=jyn514
    
    Move range in ui test to ops test in library/core
    
    Helps with rust-lang#76268
    
    r? `@matklad`
    JohnTitor committed Nov 5, 2020
    Configuration menu
    Copy the full SHA
    2d63234 View commit details
    Browse the repository at this point in the history
  16. Rollup merge of rust-lang#78754 - pietroalbini:checkout-v2, r=Mark-Si…

    …mulacrum
    
    Bump actions/checkout to version 2
    
    This was recommended by GitHub Support to try reducing the things that could've caused rust-lang#78743. I checked the changelog and there should be no practical impact for us (we already set an explicit fetch-depth).
    
    r? `@Mark-Simulacrum`
    JohnTitor committed Nov 5, 2020
    Configuration menu
    Copy the full SHA
    b0d2f97 View commit details
    Browse the repository at this point in the history
  17. Rollup merge of rust-lang#78757 - camelid:crate-link-text, r=jyn514

    Improve and clean up some intra-doc links
    JohnTitor committed Nov 5, 2020
    Configuration menu
    Copy the full SHA
    a1e8894 View commit details
    Browse the repository at this point in the history
  18. Rollup merge of rust-lang#78758 - eltociear:patch-1, r=jyn514

    Fixed typo in comment
    
    paramter -> parameter
    JohnTitor committed Nov 5, 2020
    Configuration menu
    Copy the full SHA
    652aea0 View commit details
    Browse the repository at this point in the history