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 18 pull requests #24302

Closed
wants to merge 40 commits into from
Closed

Commits on Apr 9, 2015

  1. resurrect research paper list rust-lang#24004

    Thiago Carvalho committed Apr 9, 2015
    Configuration menu
    Copy the full SHA
    549bd55 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c3aa057 View commit details
    Browse the repository at this point in the history
  3. Fix borrow docs

    apasel422 committed Apr 9, 2015
    Configuration menu
    Copy the full SHA
    644a75e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    69f63e9 View commit details
    Browse the repository at this point in the history
  5. Don't use skolemized parameters but rather fresh variables in

    coherence. Skolemized parameters wind up preventing unification.
    Surprised we had no test for this! Fixes rust-lang#24241.
    nikomatsakis committed Apr 9, 2015
    Configuration menu
    Copy the full SHA
    8578fee View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9eb8528 View commit details
    Browse the repository at this point in the history
  7. TRPL: new introduction

    steveklabnik committed Apr 9, 2015
    Configuration menu
    Copy the full SHA
    bf88539 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2015

  1. Write the 'primitive types' section of TRPL

    A brief introduction to each type, with pointers to the primitive pages
    for more info.
    steveklabnik committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    7bb0cd7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2a88b79 View commit details
    Browse the repository at this point in the history
  3. Replace the use of the rather randomly named boolean custom to mean

    "highlight end" and instead add a variant to `RenderSpan`
    nikomatsakis committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    16574e3 View commit details
    Browse the repository at this point in the history
  4. Modify the codemap code to use more slices and to information about

    columns within a line, not just the line numbers. Also try to clarify
    and use the term `line_index` when 0-based.
    nikomatsakis committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    5156b3a View commit details
    Browse the repository at this point in the history
  5. Add a new span_suggestion infrastructure. This lets you edit a snippet

    of text (perhaps obtained by span_snippet) and then splice that edited
    form back into the original file in the form of a suggestion.
    nikomatsakis committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    906a972 View commit details
    Browse the repository at this point in the history
  6. Improve error message where a closure escapes fn while trying to borrow

    from the current fn. Employ the new `span_suggestion` to show how you
    can use `move`.
    nikomatsakis committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    e313b33 View commit details
    Browse the repository at this point in the history
  7. Fix pow docs to not use Int

    This is very confusing now that these are inherent methods.
    steveklabnik committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    e66569e View commit details
    Browse the repository at this point in the history
  8. Changed the wording of the documentation for the insert method for Ve…

    …c to be less confusing. Since 0 is the smallest number possible for usize, it doesn't make sense to mention it if it's already included, and it should be more clear that the length of the vector is a valid index with the new wording.
    djallen89 committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    cdce32f View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    c2fa1f7 View commit details
    Browse the repository at this point in the history
  10. s/Panicks/Panics/

    apasel422 committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    7bf1da1 View commit details
    Browse the repository at this point in the history
  11. Add examples for Convert

    steveklabnik committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    288b1c9 View commit details
    Browse the repository at this point in the history
  12. Fix mistake in documentation

    xamgore committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    9e68d23 View commit details
    Browse the repository at this point in the history
  13. mod.rs docs fix

    Docs meant that Option is returned though the function returns Result.
    White-Oak committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    c7697ee View commit details
    Browse the repository at this point in the history
  14. mod.rs docs fix - for floats

    Same with integers — docs meant that Option is returned though the function returns Result.
    White-Oak committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    b4c49ba View commit details
    Browse the repository at this point in the history
  15. More editing work on TRPL

    Fill out blank section headers. Copy edit the entire first section.
    steveklabnik committed Apr 10, 2015
    1 Configuration menu
    Copy the full SHA
    f01dbf2 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    df8d266 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    dcc70bc View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    2b1c5c0 View commit details
    Browse the repository at this point in the history
  19. Rollup merge of rust-lang#24239 - steveklabnik:editing_pass, r=stevek…

    …labnik
    
    Now that the new TOC has landed, I've started doing an editing pass to get the old content into the right shape. I felt this introduction was significant enough to send as its own PR, though, as it's the introduction.
    
    It's possible that we may just want to replace 'the intro' with this directly, but this PR doesn't do that.
    steveklabnik committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    019d358 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    702149c View commit details
    Browse the repository at this point in the history
  21. Rollup merge of rust-lang#24242 - nikomatsakis:escaping-closure-error…

    …-message, r=brson
    
    Example showing sample inputs, old message, new message:
    
    https://gist.github.com/nikomatsakis/11126784ac678b7eb6ba
    
    Also adds infrastructure for reporting suggestions "in situ" and does some (minor) cleanups to `CodeMap`.
    
    r? @brson
    steveklabnik committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    c6ec2a2 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    003ba7e View commit details
    Browse the repository at this point in the history
  23. Rollup merge of rust-lang#24244 - steveklabnik:more_editing, r=stevek…

    …labnik
    
    Fill out blank section headers. Copy edit the entire first section.
    steveklabnik committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    3223009 View commit details
    Browse the repository at this point in the history
  24. Rollup merge of rust-lang#24245 - nikomatsakis:issue-24241-coherence-…

    …failure, r=pnkfelix
    
    Don't use skolemized parameters but rather fresh variables in coherence. Skolemized parameters wind up preventing unification. Surprised we had no test for this! Fixes rust-lang#24241.
    
    r? @pnkfelix
    steveklabnik committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    e0f4d92 View commit details
    Browse the repository at this point in the history
  25. Rollup merge of rust-lang#24247 - steveklabnik:update_variable_bindin…

    …gs, r=huonw
    
    keeping on with the edits
    steveklabnik committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    21eb4a4 View commit details
    Browse the repository at this point in the history
  26. Rollup merge of rust-lang#24253 - steveklabnik:doc_primitive_types, r…

    …=alexcrichton
    
    A brief introduction to each type, with pointers to the primitive pages
    for more info.
    steveklabnik committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    d749328 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    bbad292 View commit details
    Browse the repository at this point in the history
  28. Rollup merge of rust-lang#24274 - steveklabnik:fix_pow_docs, r=nikoma…

    …tsakis
    
    This is very confusing now that these are inherent methods.
    steveklabnik committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    b6ec2d2 View commit details
    Browse the repository at this point in the history
  29. Rollup merge of rust-lang#24279 - libfud:vec_insertion_docs, r=stevek…

    …labnik
    
    ...to be less confusing. Since 0 is the smallest number possible for usize, it doesn't make sense to mention it if it's already included, and it should be more clear that the length of the vector is a valid index with the new wording.
    
    r? @steveklabnik
    steveklabnik committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    e303a7e View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    8ca00a4 View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    bdcf5da View commit details
    Browse the repository at this point in the history
  32. Rollup merge of rust-lang#24291 - xamgore:patch-1, r=steveklabnik

    From [here](http://doc.rust-lang.org/nightly/std/primitive.i8.html):
    
    > `fn rotate_right(self, n: u32) -> i8`
    > Shifts the bits to the right by a specified __amount amount__, n, wrapping the truncated bits to the beginning of the resulting integer.
    steveklabnik committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    a7c5f51 View commit details
    Browse the repository at this point in the history
  33. Rollup merge of rust-lang#24298 - White-Oak:master, r=alexcrichton

    Fixes 'fn from_str_radix' documentation where docs meant that Option is returned, though the function returns Result.
    steveklabnik committed Apr 10, 2015
    Configuration menu
    Copy the full SHA
    6a6c02a View commit details
    Browse the repository at this point in the history