| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-07-09 | Move to unstable section | Manish Goregaokar | -89/+42 | |
| 2020-07-09 | Update src/doc/rustdoc/src/intra-doc-links.md | Manish Goregaokar | -1/+0 | |
| 2020-07-09 | Add docs for intra-doc-links | Manish Goregaokar | -0/+60 | |
| 2020-07-08 | Fix broken link in rustdocdoc | Yuki Okushi | -1/+1 | |
| 2020-07-07 | Update books | Eric Huss | -0/+0 | |
| 2020-07-05 | Rollup merge of #73787 - pickfire:rustc-attrs, r=RalfJung | Manish Goregaokar | -0/+53 | |
| Add unstable docs for rustc_attrs r? @RalfJung | ||||
| 2020-07-05 | Canonicalize part 1 name (#788) | Matt Kraai | -1/+1 | |
| 2020-07-04 | Suggest selectively disabling optimizations | Nadrieril | -0/+16 | |
| 2020-07-04 | Update bug report links. | Eric Huss | -2/+2 | |
| 2020-07-04 | Fix link for armhf-gnu Dockerfile | Yuki Okushi | -2/+2 | |
| 2020-07-04 | Update docs on using Docker images. | Eric Huss | -6/+44 | |
| 2020-07-03 | Rollup merge of #73670 - davidhewitt:format-args-capture, r=varkor | Manish Goregaokar | -0/+47 | |
| Add `format_args_capture` feature This is the initial implementation PR for [RFC 2795](https://github.com/rust-lang/rfcs/pull/2795). Note that, as dicussed in the tracking issue (#67984), the feature gate has been called `format_args_capture`. Next up I guess I need to add documentation for this feature. I've not written any docs before for rustc / std so I would appreciate suggestions on where I should add docs. | ||||
| 2020-07-03 | Update mdbook | Eric Huss | -1/+1 | |
| 2020-07-04 | Fix jump marker of debruijn index (#783) | Takayuki Nakata | -1/+1 | |
| 2020-07-04 | Minor updates to stage docs. (#781) | Eric Huss | -15/+17 | |
| 2020-07-03 | add stub inline asm chapter (#773) | Who? Me?! | -0/+4 | |
| 2020-07-02 | Fix the names of table of contents and heading are different | Takayuki Nakata | -3/+3 | |
| Not to write the part of Appendix `A` in heading along with other appendix. | ||||
| 2020-07-01 | fix links | mark | -4/+4 | |
| 2020-07-01 | Escape other non-link | Who? Me?! | -1/+1 | |
| Co-authored-by: Joshua Nelson <joshua@yottadb.com> | ||||
| 2020-07-01 | Fix non-link | Who? Me?! | -1/+1 | |
| Co-authored-by: Joshua Nelson <joshua@yottadb.com> | ||||
| 2020-07-01 | fix links | mark | -5/+8 | |
| 2020-07-01 | fix links | mark | -8/+11 | |
| 2020-07-01 | line length | mark | -2/+3 | |
| 2020-07-01 | move CONTRIBUTING.md to rustc-dev-guide | mark | -0/+500 | |
| 2020-07-01 | Edit Part 2 introduction (#777) | pierwill | -4/+3 | |
| * Edit Part 2 introduction * needs a pause Co-authored-by: Tshepang Lekhonkhobe <tshepang@gmail.com> | ||||
| 2020-06-30 | Stabilize `#[track_caller]`. | Adam Perry | -5/+0 | |
| Does not yet make its constness stable, though. Use of `Location::caller` in const contexts is still gated by `#![feature(const_caller_location)]`. | ||||
| 2020-06-30 | fix file name | mark | -1/+1 | |
| 2020-06-30 | Move Getting Started to a "prefix chapter" | Who? Me?! | -1/+2 | |
| 2020-06-30 | Move Errors and Lints to Analysis | Who? Me?! | -3/+4 | |
| 2020-06-30 | Rename resolvers following the latest rustc change (#776) | Yuki Okushi | -4/+4 | |
| 2020-06-29 | Ignore example compile in rustc-attrs doc | Ivan Tham | -2/+2 | |
| 2020-06-28 | Edit ty.md | pierwill | -45/+40 | |
| Makes various edits throughout for formatting, punctuation, and typo fixes. Also makes some edits and re-wording for clarity. | ||||
| 2020-06-28 | Fix line lengths | Joshua Nelson | -1/+2 | |
| 2020-06-28 | Improve wording and fix typos | Joshua Nelson | -2/+2 | |
| Co-authored-by: Who? Me?! <mark-i-m@users.noreply.github.com> | ||||
| 2020-06-28 | Revamp bootstrapping section | Joshua Nelson | -20/+88 | |
| - Move most of the overview to building/bootstrapping.md - Add things besides stages to bootstrapping.md | ||||
| 2020-06-28 | Remove `const_if_match` from unstable book | Dylan MacKenzie | -14/+0 | |
| 2020-06-28 | Add preamable on rustc-attrs doc discussion | Ivan Tham | -0/+3 | |
| 2020-06-27 | Add `format_args_capture` to the unstable book | David Hewitt | -0/+47 | |
| 2020-06-28 | Update src/doc/unstable-book/src/language-features/rustc-attrs.md | Ivan Tham | -1/+1 | |
| Co-authored-by: Ralf Jung <post@ralfj.de> | ||||
| 2020-06-27 | Add 'recovery' to the gloassary | Aaron Hill | -0/+1 | |
| 2020-06-27 | fix typo in self-profile.md | Takuto Ikuta | -1/+1 | |
| 2020-06-27 | Add unstable docs for rustc_attrs | Ivan Tham | -0/+50 | |
| 2020-06-26 | Fold chapters by default to make ToC shorter | Who? Me?! | -1/+1 | |
| 2020-06-26 | Rollup merge of #73588 - Amanieu:thumb-fp, r=nagisa | Manish Goregaokar | -2/+6 | |
| Fix handling of reserved registers for ARM inline asm `r6` is now disallowed as an operand since LLVM sometimes uses it as a base pointer. The check against using the frame pointer as an operand now takes the platform into account and will block either `r7` or `r11` as appropriate. Fixes #73450 cc @cbiffle | ||||
| 2020-06-24 | Fix formatting | Who? Me?! | -2/+2 | |
| 2020-06-24 | Upgrade to mdbook 0.4 and switch to book parts (#764) | Who? Me?! | -134/+144 | |
| * upgrade to mdbook 0.4 and switch to book parts * update linkcheck * fix links, update about-this-guide | ||||
| 2020-06-23 | Update books | Eric Huss | -0/+0 | |
| 2020-06-23 | Move x.py commands to overview | Joshua Nelson | -4/+5 | |
| 2020-06-23 | Split up rustdoc page | Joshua Nelson | -191/+200 | |
| 2020-06-23 | Move rustdoc to 'How to build the compiler' | Joshua Nelson | -1/+1 | |
| The old layout was less about rustdoc and more about the compiler: "Here is an example of a project using rustc_interface". This gives focus to rustdoc on something you might want to work on for its own sake. It also makes the page much easier to find for newcomers. | ||||
