| Age | Commit message (Expand) | Author | Lines |
| 2018-10-09 | Add lint for doc without codeblocks | Guillaume Gomez | -2/+4 |
| 2018-10-04 | rustdoc: overflow:auto doesn't work nicely on small screens | Kazuyoshi Kato | -1/+0 |
| 2018-09-29 | Add a sentence before rustc errors | Guillaume Gomez | -1/+1 |
| 2018-09-29 | Improve error display for codeblocks in rustdoc | Guillaume Gomez | -7/+18 |
| 2018-09-29 | Rollup merge of #54577 - QuietMisdreavus:docs-for-procs, r=GuillaumeGomez | kennytm | -7/+90 |
| 2018-09-27 | show "all items" link even if crate doesn't have a version | QuietMisdreavus | -4/+5 |
| 2018-09-27 | add attributes/derives to "all items" page | QuietMisdreavus | -0/+8 |
| 2018-09-26 | add derive macros' helper attributes to doc output | QuietMisdreavus | -0/+8 |
| 2018-09-26 | add declaration blocks to attribute/derive pages | QuietMisdreavus | -4/+18 |
| 2018-09-25 | Rollup merge of #54539 - GuillaumeGomez:fix-js-error, r=QuietMisdreavus | Pietro Albini | -2/+5 |
| 2018-09-25 | Rollup merge of #54368 - GuillaumeGomez:reduce-side-padding, r=QuietMisdreavus | Pietro Albini | -1/+1 |
| 2018-09-25 | handle proc-macros as macros instead of functions | QuietMisdreavus | -3/+55 |
| 2018-09-24 | Fix JS error | Guillaume Gomez | -2/+5 |
| 2018-09-22 | Rollup merge of #54350 - Munksgaard:support-edition-in-doc-test, r=steveklabnik | Pietro Albini | -31/+76 |
| 2018-09-20 | shuffle ownership of `external_traits` | QuietMisdreavus | -1/+1 |
| 2018-09-20 | refactor: move `access_levels` into RenderInfo | QuietMisdreavus | -2/+4 |
| 2018-09-20 | don't index trait impls if the trait isn't also documented | QuietMisdreavus | -5/+29 |
| 2018-09-20 | add a bunch of debug prints | QuietMisdreavus | -0/+4 |
| 2018-09-20 | Add a documentation banner for edition specific code | Philip Munksgaard | -13/+44 |
| 2018-09-19 | Reduce code block sides padding | Guillaume Gomez | -1/+1 |
| 2018-09-19 | Add support for running doc test in specific edition | Philip Munksgaard | -18/+32 |
| 2018-09-18 | Rollup merge of #54097 - GuillaumeGomez:remove-keyword-namespace, r=QuietMisd... | Guillaume Gomez | -2/+2 |
| 2018-09-16 | Rollup merge of #53941 - kzys:sort-impls, r=GuillaumeGomez | Guillaume Gomez | -4/+20 |
| 2018-09-14 | Auto merge of #52962 - GuillaumeGomez:few-things, r=QuietMisdreavus | bors | -10/+36 |
| 2018-09-12 | rustdoc: Sort implementors | Kazuyoshi Kato | -4/+20 |
| 2018-09-12 | Auto merge of #53409 - GuillaumeGomez:associated-const-value, r=QuietMisdreavus | bors | -44/+27 |
| 2018-09-10 | Remove namespace for keywords | Guillaume Gomez | -2/+2 |
| 2018-09-09 | rustdoc: Remove generated blanket impls from trait pages | Oliver Middleton | -14/+12 |
| 2018-09-06 | Don't show default docs | Guillaume Gomez | -16/+11 |
| 2018-09-06 | Fix implementors generation as well | Guillaume Gomez | -3/+6 |
| 2018-09-06 | Fix hover on impls | Guillaume Gomez | -37/+43 |
| 2018-09-05 | Apply method docs collapse to all impl-items sections | Guillaume Gomez | -1/+3 |
| 2018-09-01 | Rollup merge of #53801 - GuillaumeGomez:duplicated-foreign-type-impls, r=Quie... | kennytm | -5/+9 |
| 2018-08-31 | Auto merge of #51384 - QuietMisdreavus:extern-version, r=GuillaumeGomez | bors | -2/+14 |
| 2018-08-30 | Rollup merge of #53806 - GuillaumeGomez:fix-ui-issues-foreign-type-impls, r=Q... | Pietro Albini | -0/+11 |
| 2018-08-30 | Rollup merge of #53747 - GuillaumeGomez:rustdoc-fixes, r=QuietMisdreavus | Pietro Albini | -0/+6 |
| 2018-08-29 | Prevent duplicated impl on foreign types | Guillaume Gomez | -5/+9 |
| 2018-08-29 | Fix UI issues on Implementations on Foreign types | Guillaume Gomez | -0/+11 |
| 2018-08-28 | Use FxHash{Map,Set} instead of the default Hash{Map,Set} everywhere in rustc. | Eduard-Mihai Burtescu | -33/+35 |
| 2018-08-27 | Fix invalid display of unstable messages | Guillaume Gomez | -0/+5 |
| 2018-08-27 | Fix source automatic scroll | Guillaume Gomez | -0/+1 |
| 2018-08-26 | Remove static and const initialization from documentation | Guillaume Gomez | -17/+4 |
| 2018-08-26 | Rollup merge of #53706 - ehuss:rustdoc-section-anchor, r=GuillaumeGomez | Guillaume Gomez | -3/+2 |
| 2018-08-26 | Rollup merge of #53626 - kzys:hashchange, r=GuillaumeGomez | Guillaume Gomez | -16/+36 |
| 2018-08-26 | Rollup merge of #53043 - GuillaumeGomez:improve-unstable-msg-display, r=Quiet... | Guillaume Gomez | -0/+13 |
| 2018-08-25 | rustdoc: Fix gap on section anchor symbol when hovering. | Eric Huss | -3/+2 |
| 2018-08-25 | Add collapser for associated const | Guillaume Gomez | -4/+3 |
| 2018-08-25 | Don't show associated const value anymore | Guillaume Gomez | -23/+20 |
| 2018-08-25 | Expand a collapsed element on onclick | Kazuyoshi Kato | -16/+21 |
| 2018-08-25 | Auto merge of #53577 - GuillaumeGomez:rustdoc-substring-search, r=QuietMisdre... | bors | -10/+10 |