| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-12-06 | Make `core::convert` a directory-module with `mod.rs` | Simon Sapin | -660/+0 | |
| 2019-11-26 | Format libcore with rustfmt | David Tolnay | -17/+34 | |
| This commit applies rustfmt with default settings to files in src/libcore *that are not involved in any currently open PR* to minimize merge conflicts. The list of files involved in open PRs was determined by querying GitHub's GraphQL API with this script: https://gist.github.com/dtolnay/aa9c34993dc051a4f344d1b10e4487e8 With the list of files from the script in `outstanding_files`, the relevant commands were: $ find src/libcore -name '*.rs' | xargs rustfmt --edition=2018 $ rg libcore outstanding_files | xargs git checkout -- Repeating this process several months apart should get us coverage of most of the rest of libcore. | ||||
| 2019-11-21 | Redefine `core::convert::Infallible` as `!`. | Mazdak Farrokhzad | -88/+7 | |
| 2019-11-12 | Snap cfgs | Mark Rousskov | -1/+0 | |
| 2019-11-09 | Auto merge of #65879 - ohadravid:stabilize-re-rebalance-coherence, ↵ | bors | -15/+12 | |
| r=nikomatsakis Stabilize the `re_rebalance_coherence` feature This PR stabilizes [RFC 2451](https://rust-lang.github.io/rfcs/2451-re-rebalancing-coherence.html), re-rebalance coherence. Changes include removing the attribute from tests which tested both the old and new behavior, moving the feature to `accepted` and removing the old logic. I'll also open a [PR](https://github.com/rust-lang-nursery/reference/pull/703) against the reference, updating it with the content of the RFC. Closes #63599 r? @nikomatsakis | ||||
| 2019-11-02 | Rename SuperiorThanZero -> GreaterThanZero | Kevin Cox | -4/+4 | |
| 2019-10-31 | Strengthen documentation discouraging implementing `Into` over `From` | Ohad Ravid | -9/+7 | |
| 2019-10-31 | Change `Into` docs to refer only to older versions of rust | Ohad Ravid | -6/+5 | |
| 2019-10-30 | Fix logic in example. | Kevin Cox | -1/+1 | |
| The example claims SuperiorThanZero and presumably Zero is not Superior than itself so it should not be allowed. | ||||
| 2019-09-25 | address rebase damage | Ariel Ben-Yehuda | -1/+1 | |
| 2019-09-24 | add a rustdoc comment to the reservation impl | Niko Matsakis | -0/+5 | |
| 2019-09-24 | nit: update error text to cite tracking issue | Niko Matsakis | -6/+2 | |
| 2019-09-24 | add error message for case | Ariel Ben-Yehuda | -1/+6 | |
| 2019-09-24 | reserve `impl<T> From<!> for T` | Ariel Ben-Yehuda | -0/+6 | |
| this is necessary for never-type stabilization | ||||
| 2019-09-16 | Make some adjustments to the documentation for `std::convert::identity` | varkor | -8/+9 | |
| Fixes some extra blank lines and makes some minor tweaks to the wording. | ||||
| 2019-08-29 | Add missing links on AsRef trait | Guillaume Gomez | -11/+13 | |
| 2019-08-08 | Use associated_type_bounds where applicable - closes #61738 | Ilija Tovilo | -2/+2 | |
| 2019-08-02 | Fix typos in doc comments. | Bruce Mitchener | -1/+1 | |
| 2019-07-17 | Add missing link to Infallible in TryFrom doc | lzutao | -0/+1 | |
| 2019-07-03 | Rollup merge of #62186 - GuillaumeGomez:add-missing-type-links-into, r=docs | Mark Rousskov | -2/+3 | |
| Add missing type urls in Into trait r? @rust-lang/docs | ||||
| 2019-06-29 | Add missing type urls in Into trait | Guillaume Gomez | -2/+3 | |
| 2019-06-29 | Add missing links for TryFrom docs | Guillaume Gomez | -9/+11 | |
| 2019-06-20 | Fix Into trait links | Gurwinder Singh | -13/+13 | |
| 2019-06-02 | Fix typo in AsRef doc | Fabian Drinck | -1/+1 | |
| 2019-05-30 | Fixed some typos. | OptimisticPeach | -2/+2 | |
| 2019-05-16 | Rollup merge of #59923 - czipperz:fix-convert-doc-links, r=steveklabnik | Mazdak Farrokhzad | -20/+20 | |
| Fix convert module's documentation links r? @steveklabnik | ||||
| 2019-04-18 | libcore => 2018 | Taiki Endo | -1/+1 | |
| 2019-04-13 | Fix stray ` in previous change | Chris Gregory | -1/+1 | |
| 2019-04-13 | Escape &str in convert docs | Chris Gregory | -2/+3 | |
| 2019-04-13 | Reorder blank lines in AsMut documentation | Chris Gregory | -1/+2 | |
| 2019-04-13 | Remove blank lines in AsRef documentation | Chris Gregory | -2/+0 | |
| 2019-04-13 | Remove broken links to self in Into documentation | Chris Gregory | -4/+4 | |
| 2019-04-13 | Remove dangling ` in Into documentation | Chris Gregory | -1/+1 | |
| 2019-04-12 | Fix convert module's documentation links | Chris Gregory | -11/+11 | |
| 2019-04-06 | Rollup merge of #59707 - GuillaumeGomez:GuillaumeGomez-patch-1, r=Centril | Mazdak Farrokhzad | -0/+20 | |
| Add missing tryfrom example r? @rust-lang/docs | ||||
| 2019-04-05 | Add missing tryfrom example | Guillaume Gomez | -0/+20 | |
| 2019-04-03 | be more direct about borrow requirenments | Aleksey Kladov | -4/+6 | |
| 2019-03-27 | Rollup merge of #59268 - estebank:from-string, r=QuietMisdreavus | Josh Stone | -0/+6 | |
| Add suggestion to use `&*var` when `&str: From<String>` is expected Fix #53879. | ||||
| 2019-03-25 | Formatting changes, including better wrapping and creating short summary lines. | Christian | -16/+21 | |
| 2019-03-22 | review comments | Esteban Küber | -1/+1 | |
| 2019-03-22 | Add suggestion to use `&*var` when `&str: From<String>` is expected | Esteban Küber | -0/+6 | |
| 2019-03-21 | Wrapped a line such that it does not exceed 100 characters. | Christian | -1/+2 | |
| 2019-03-21 | Changed inline code by using a single quote. | Christian | -20/+20 | |
| 2019-03-21 | Added back a reference to "the book" | Christian | -2/+2 | |
| 2019-03-21 | Fixed indentation of list items. | Christian | -4/+2 | |
| 2019-03-21 | Reformatted the text such that the line length does not exceed 100. | Christian | -15/+22 | |
| 2019-03-20 | Initial version of the documentation change of std::convert. | Christian | -85/+85 | |
| 2019-03-12 | Remove stabilized feature gate in doctest | Simon Sapin | -1/+0 | |
| 2019-02-27 | Incorporated review changes. | Simon Heath | -1/+3 | |
| 2019-02-27 | Slowly figuring out how rustdoc actually works. | Simon Heath | -0/+3 | |
| Unfortunately trying to run doctests on my local machine is not really faster than letting Travis do it... | ||||
