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 9 pull requests #36373

Closed
wants to merge 18 commits into from
Closed

Commits on Aug 27, 2016

  1. rustdoc: Add missing item types to page titles

    Most pages include the item type in the title such as "Struct
    std::vec::Vec". However it is missing from the pages for foreign
    functions, type definitions, macros, statics and constants. This adds them
    so for example, instead of a title of "std::u32::MAX" it is "Constant
    std::u32::MAX" to match the others.
    ollie27 committed Aug 27, 2016
    Configuration menu
    Copy the full SHA
    a7c671b View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2016

  1. Configuration menu
    Copy the full SHA
    b99c5cf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    102b3a9 View commit details
    Browse the repository at this point in the history
  3. Fixed typo in nomicon

    JDemler committed Sep 7, 2016
    Configuration menu
    Copy the full SHA
    f6aab5b View commit details
    Browse the repository at this point in the history
  4. Handle ReEmpty for impl Trait

    apasel422 committed Sep 7, 2016
    Configuration menu
    Copy the full SHA
    d951d5d View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2016

  1. Configuration menu
    Copy the full SHA
    8c95712 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dd570d6 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2016

  1. Allow setting --docdir

    orbea committed Sep 9, 2016
    Configuration menu
    Copy the full SHA
    5e9149d View commit details
    Browse the repository at this point in the history
  2. Update the wording for E0063. This will truncate the fields to 3.

    Instead of listing every field it will now show missing `a`, `z`, `b`, and 1 other field
    jaredadobe committed Sep 9, 2016
    Configuration menu
    Copy the full SHA
    0e32d11 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2016

  1. Rollup merge of rust-lang#35691 - jaredwy:update-error-63, r=jonathan…

    …dturner
    
    Update the wording for E0063. This will truncate the fields to 3.
    
    Instead of listing every field it will now show missing `a`, `z`, `b`, and 1 other field
    This is for rust-lang#35218 as part of rust-lang#35233
    
    r? @jonathandturner
    Manishearth authored Sep 10, 2016
    Configuration menu
    Copy the full SHA
    1ad0549 View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#36045 - ollie27:rustdoc_titles3, r=stevekla…

    …bnik
    
    rustdoc: Add missing item types to page titles
    
    Most pages include the item type in the title such as "Struct std::vec::Vec". However it is missing from the pages for foreign functions, type definitions, macros, statics and constants. This adds them so for example, instead of a title of "std::u32::MAX" it is "Constant std::u32::MAX" to match the others.
    
    [before](https://doc.rust-lang.org/nightly/std/u32/constant.MAX.html) [after](https://ollie27.github.io/rust_doc_test/std/u32/constant.MAX.html)
    [before](https://doc.rust-lang.org/nightly/std/io/type.Result.html) [after](https://ollie27.github.io/rust_doc_test/std/io/type.Result.html)
    
    Previous discussions: rust-lang#34345, rust-lang#35003
    Manishearth authored Sep 10, 2016
    Configuration menu
    Copy the full SHA
    af6b8a1 View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#36311 - frewsxcv:instant-elapsed-example, r…

    …=GuillaumeGomez
    
    Add doc example for `std::time::Instant::elapsed`.
    
    None
    Manishearth authored Sep 10, 2016
    Configuration menu
    Copy the full SHA
    3bf805e View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#36314 - tshepang:not-needed, r=GuillaumeGomez

    doc: we got coercion going on here, so no need to be this explicit
    Manishearth authored Sep 10, 2016
    Configuration menu
    Copy the full SHA
    37524de View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#36326 - JDemler:master, r=steveklabnik

    Fixed typo in nomicon
    Manishearth authored Sep 10, 2016
    Configuration menu
    Copy the full SHA
    58d8038 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#36333 - apasel422:issue-35668, r=eddyb

    Handle `ReEmpty` for `impl Trait`
    
    Closes rust-lang#35668
    
    r? @eddyb
    Manishearth authored Sep 10, 2016
    Configuration menu
    Copy the full SHA
    2666f68 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#36344 - sanxiyn:llvm-components, r=alexcric…

    …hton
    
    Use LLVM_COMPONENTS to run tests just for supported targets
    
    This is already done for simd-ffi test, but not for atomic-lock-free test.
    
    Fix rust-lang#35023.
    Manishearth authored Sep 10, 2016
    Configuration menu
    Copy the full SHA
    454b1eb View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#36351 - pnkfelix:fix-36278-size-miscalc, r=…

    …eddyb
    
    When sizing DST, don't double-count nested struct prefixes.
    
    When computing size of `struct P<T>(Q<T>)`, don't double-count prefix added by `Q`
    
    Fix rust-lang#36278. Fix rust-lang#36294.
    Manishearth authored Sep 10, 2016
    Configuration menu
    Copy the full SHA
    ec6fe6e View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#36360 - orbea:docdir, r=alexcrichton

    Allow setting --docdir
    
    This will allow setting `--docdir` during configure, this is useful because not all linux distributions install documentation to `/usr/share/doc`.  For example in Slackware documentation is installed to `/usr/doc/$PRGNAM-$VERSION` and `/usr/share/doc` is a symlink to `/usr/doc`.
    
    To use this `./configure --docdir=/usr/doc/$PRGNAM-$VERSION` can be used.
    Manishearth authored Sep 10, 2016
    Configuration menu
    Copy the full SHA
    c5f99e7 View commit details
    Browse the repository at this point in the history