| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-12-03 | Rollup merge of #56418 - petrochenkov:wintidy, r=nagisa | kennytm | -0/+0 | |
| Fix failing tidy (line endings on Windows) Updates to `rustc-guide` and `edition-guide` including https://github.com/rust-lang/rustc-guide/pull/246 and https://github.com/rust-lang-nursery/edition-guide/pull/122. | ||||
| 2018-12-03 | Rollup merge of #56402 - scottmcm:better-marker-trait-example, r=Centril | kennytm | -6/+8 | |
| Improve the unstable book example for #[marker] trait The previous one didn't actually use the Display&Debug bounds in any way, so I think this one is a bit more meaningful. | ||||
| 2018-12-01 | fix some linkrotted links | Andy Wortman | -3/+3 | |
| 2018-12-02 | Fix failing tidy (line endings on Windows) | Vadim Petrochenkov | -0/+0 | |
| 2018-12-01 | Fix the file path where AST is defined | yui-knk | -1/+1 | |
| 2018-12-01 | Fix failing tidy (line endings on Windows) (#246) | Vadim Petrochenkov | -0/+2 | |
| This happens every time a new doc submodule is added to https://github.com/rust-lang/rust. cc https://github.com/rust-lang/book/pull/549 https://github.com/rust-lang-nursery/reference/pull/36 https://github.com/rust-lang/rust-by-example/pull/1018 | ||||
| 2018-12-01 | Improve the unstable book example for `#[marker]` | Scott McMurray | -6/+8 | |
| The previous one didn't actually use the Display&Debug bounds in any way, so I think this one is a bit more meaningful. | ||||
| 2018-11-30 | Removed chapter from Unstable Book. | Alexander Regueiro | -24/+0 | |
| 2018-12-01 | Rollup merge of #56365 - alexreg:stabilise-self_struct_ctor, r=Centril | kennytm | -33/+0 | |
| Stabilize self_struct_ctor feature. [**Tracking Issue**](https://github.com/rust-lang/rust/issues/51994) | ||||
| 2018-11-30 | Removed feature gate. | Alexander Regueiro | -33/+0 | |
| 2018-11-30 | Add the edition guide to doc.rust-lang.org | Steve Klabnik | -0/+0 | |
| 2018-11-30 | update nomicon | Steve Klabnik | -0/+0 | |
| 2018-11-29 | Rollup merge of #56257 - mark-i-m:rustc-guide-links, r=nikomatsakis | Guillaume Gomez | -2/+2 | |
| rustc-guide has moved to rust-lang/ r? @nikomatsakis | ||||
| 2018-11-29 | Rollup merge of #56148 - mark-i-m:rustc-guide-submodule, r=nikomatsakis | Guillaume Gomez | -0/+0 | |
| Add rustc-guide as a submodule Adding this as a submodule will allow two things: - Linking to the guide from doc.rlo - Doing a link check as part of the rust CI build Key question: Do we want to wait for the book to be filled out more? e.g. do we ever want to move it out of the nursery? r? @nikomatsakis cc @steveklabnik | ||||
| 2018-11-29 | Rollup merge of #56080 - mark-i-m:patch-2, r=steveklabnik | Guillaume Gomez | -0/+3 | |
| Reduce the amount of bold text at doc.rlo Currently, all of the text is either huge or small. IMHO this is hard to read, so I propose that we make the second-level headings smaller, without making them any less prominent. # Before:  # After:  | ||||
| 2018-11-27 | remove uses of feature gate | Mark Mansi | -1/+0 | |
| 2018-11-27 | remove unstable book entry | Mark Mansi | -22/+0 | |
| 2018-11-26 | rustc-guide has moved | Who? Me?! | -1/+1 | |
| 2018-11-26 | fix relative link (#242) | Who? Me?! | -1/+1 | |
| 2018-11-26 | rustc-guide has moved | Mark Mansi | -2/+2 | |
| 2018-11-26 | Add rustc-guide as a submodule | Mark Mansi | -0/+0 | |
| 2018-11-26 | Merge pull request #237 from mark-i-m/walkthrough | Niko Matsakis | -0/+268 | |
| start on walkthrough | ||||
| 2018-11-26 | make the line-length script respect 100 char limit XD (#240) | Who? Me?! | -1/+3 | |
| :rofl: :rofl: :rofl: | ||||
| 2018-11-26 | add link to stabilization pr | Mark Mansi | -1/+9 | |
| 2018-11-25 | Rollup merge of #56072 - da-x:stabilize-literal-matcher, r=petrochenkov | Pietro Albini | -17/+0 | |
| Stabilize macro_literal_matcher This followed FCP in #35625. Closes #35625 | ||||
| 2018-11-25 | Rollup merge of #56045 - qnighy:additional-sizedness, r=cramertj | Pietro Albini | -2/+0 | |
| Check arg/ret sizedness at ExprKind::Path This PR solves three problems: - #50940: ICE on casting unsized tuple struct constructors - Unsized tuple struct constructors were callable in presence of `unsized_locals`. - https://github.com/rust-lang/rust/issues/48055#issuecomment-437178966: we cannot relax `Sized` bounds on stable functions because of fn ptr casting These are caused by lack of `Sized`ness checks for arguments/retvals at **reference sites of `FnDef` items** (not call sites of the functions). Therefore we can basically add more `Sized` obligations on typeck. However, adding `Sized` obligations arbitrarily breaks type inference; to prevent that I added a new method `require_type_is_sized_deferred` which doesn't interfere usual type inference. | ||||
| 2018-11-21 | Stabilize macro_literal_matcher | Dan Aloni | -17/+0 | |
| 2018-11-21 | Modify doc to reflect the unsized-locals improvement. | Masaki Hara | -2/+0 | |
| 2018-11-20 | fix more links | Steve Klabnik | -4/+2 | |
| 2018-11-20 | update books | Steve Klabnik | -0/+0 | |
| 2018-11-20 | Merge pull request #228 from tmandry/traits-slg | Niko Matsakis | -2/+301 | |
| Add traits SLG solver section | ||||
| 2018-11-19 | SLG: Add links and mark-i-m's suggestions | Tyler Mandry | -49/+68 | |
| 2018-11-19 | Reduce the amount of bold text at doc.rust-lang.org | Who? Me?! | -0/+3 | |
| 2018-11-19 | Link to rustc guide | Who? Me?! | -0/+6 | |
| As proposed in https://github.com/rust-lang-nursery/rustc-guide/issues/239 | ||||
| 2018-11-19 | finish walkthrough | Mark Mansi | -3/+28 | |
| 2018-11-18 | resolve: Reintroduce feature gate for uniform paths in imports | Vadim Petrochenkov | -2/+2 | |
| 2018-11-14 | Fix typo (#238) | Félix Fischer | -3/+3 | |
| "is is" ~> "it is" | ||||
| 2018-11-11 | add a bit more | Mark Mansi | -11/+34 | |
| 2018-11-10 | add a bit more | Mark Mansi | -1/+66 | |
| 2018-11-10 | start on walkthrough | Mark Mansi | -0/+147 | |
| 2018-11-09 | Don't keep recompiling! | Who? Me?! | -2/+2 | |
| 2018-11-09 | Don't try to build some example code snippets | Oliver Scherer | -3/+3 | |
| 2018-11-09 | Line length checks | Oliver Scherer | -2/+3 | |
| 2018-11-09 | Remove a sentence from the end of a chapter because it also appears right at ↵ | Oliver Scherer | -2/+0 | |
| the start of the chapter | ||||
| 2018-11-09 | Clarify aggregates | Who? Me?! | -1/+1 | |
| Co-Authored-By: oli-obk <github35764891676564198441@oli-obk.de> | ||||
| 2018-11-09 | Missing connection between two consecutive sentences | Who? Me?! | -1/+2 | |
| Co-Authored-By: oli-obk <github35764891676564198441@oli-obk.de> | ||||
| 2018-11-09 | english is hard | Who? Me?! | -1/+1 | |
| Co-Authored-By: oli-obk <github35764891676564198441@oli-obk.de> | ||||
| 2018-11-09 | caps nit | Who? Me?! | -1/+1 | |
| Co-Authored-By: oli-obk <github35764891676564198441@oli-obk.de> | ||||
| 2018-11-09 | Grammar nit | Who? Me?! | -1/+1 | |
| Co-Authored-By: oli-obk <github35764891676564198441@oli-obk.de> | ||||
| 2018-11-09 | Fix tidy | Oliver Scherer | -1/+4 | |
