| Age | Commit message (Expand) | Author | Lines |
| 2017-01-27 | Don't generate doc if doc comments only filled with 'white' characters | Guillaume Gomez | -1/+2 |
| 2017-01-21 | Force backline on all where in docs | Guillaume Gomez | -4/+3 |
| 2017-01-20 | Rollup merge of #39118 - jseyfried:token_tree_based_parser, r=nrc | Alex Crichton | -9/+7 |
| 2017-01-17 | Fix fallout in `rustdoc`. | Jeffrey Seyfried | -9/+7 |
| 2017-01-17 | AST/HIR: Merge ObjectSum and PolyTraitRef | Vadim Petrochenkov | -13/+0 |
| 2017-01-15 | Fix missing blank space issue | Guillaume Gomez | -2/+4 |
| 2017-01-12 | Auto merge of #38569 - chris-morgan:rustdoc-highlight-kw-2, r=steveklabnik | bors | -3/+5 |
| 2017-01-09 | Improved rustdoc rendering for unstable features | Manish Goregaokar | -11/+26 |
| 2017-01-09 | Auto merge of #38244 - estebank:escape-reason-docs, r=ollie27 | bors | -9/+36 |
| 2017-01-04 | Auto merge of #38414 - estebank:doc-dissambiguate, r=steveklabnik | bors | -166/+201 |
| 2016-12-29 | rustdoc: Fix broken CSS for trait items | Oliver Middleton | -2/+1 |
| 2016-12-27 | Merge branch 'master' into escape-reason-docs | Esteban Küber | -39/+37 |
| 2016-12-27 | Auto merge of #38329 - ollie27:rustdoc_stab_em_div, r=steveklabnik | bors | -15/+16 |
| 2016-12-25 | Add unittest | Esteban Küber | -1/+12 |
| 2016-12-24 | Rollup merge of #38497 - QuietMisdreavus:rustdoc-where-again, r=steveklabnik | Steve Klabnik | -1/+1 |
| 2016-12-24 | Rollup merge of #38480 - clarcharr:import_css, r=steveklabnik | Steve Klabnik | -2/+1 |
| 2016-12-22 | use same param name across methods | Esteban Küber | -9/+12 |
| 2016-12-23 | Fix rustdoc highlighting of `&` and `*`. | Chris Morgan | -3/+5 |
| 2016-12-22 | Auto merge of #38330 - ollie27:rustdoc_short_summaries, r=steveklabnik | bors | -19/+8 |
| 2016-12-21 | use &str instead of String | bluss | -6/+5 |
| 2016-12-20 | rustdoc: properly calculate line length for impl where clauses | QuietMisdreavus | -1/+1 |
| 2016-12-19 | Don't @import normalize.css. | Clar Charr | -2/+1 |
| 2016-12-19 | remove O(n^2) to O(n) behavior | Esteban Küber | -14/+17 |
| 2016-12-15 | Rustdoc: disambiguate Implementors when the type name is not unique | Esteban Küber | -166/+196 |
| 2016-12-14 | Add `MarkdownHmtl` escape struct | Esteban Küber | -11/+27 |
| 2016-12-13 | rustdoc: Fix invalid HTML in stability notices | Oliver Middleton | -15/+16 |
| 2016-12-12 | rustdoc: escape the deprecated and unstable reason text | Esteban Küber | -3/+3 |
| 2016-12-12 | Rollup merge of #38264 - ollie27:rustdoc_src_macro, r=brson | Corey Farwell | -0/+7 |
| 2016-12-12 | Rollup merge of #38164 - sourcefrog:fonts, r=GuillaumeGomez | Corey Farwell | -2/+4 |
| 2016-12-12 | rustdoc: Fix short summaries in search results | Oliver Middleton | -19/+8 |
| 2016-12-09 | rustdoc: Remove broken src links from reexported items from macros | Oliver Middleton | -0/+7 |
| 2016-12-07 | Auto merge of #38105 - ollie27:rustdoc_deterministic_js, r=GuillaumeGomez | bors | -24/+26 |
| 2016-12-04 | Avoid using locally installed Source Code Pro font (fixes #24355). | Martin Pool | -2/+4 |
| 2016-12-01 | rustdoc: Sort lines in search index and implementors js | Oliver Middleton | -24/+26 |
| 2016-12-01 | Auto merge of #37911 - liigo:rustdoc-playground, r=alexcrichton | bors | -0/+8 |
| 2016-11-30 | rustdoc: link to cross-crate sources directly. | Eduard-Mihai Burtescu | -115/+82 |
| 2016-11-30 | rustdoc: fix up --playground-url | Liigo Zhuang | -5/+5 |
| 2016-11-30 | rustdoc: get back missing crate-name when --playground-url is used | Liigo Zhuang | -0/+8 |
| 2016-11-28 | rustc: desugar `use a::{b,c};` into `use a::b; use a::c;` in HIR. | Eduard-Mihai Burtescu | -27/+0 |
| 2016-11-24 | rustdoc: use libsyntax ast::Attribute instead of "cleaning" them. | Eduard-Mihai Burtescu | -53/+50 |
| 2016-11-20 | Rollup merge of #37881 - ollie27:rustdoc_stab_enum_macro, r=alexcrichton | Guillaume Gomez | -2/+0 |
| 2016-11-19 | rustdoc: Remove unnecessary stability versions | Oliver Middleton | -2/+0 |
| 2016-11-18 | Auto merge of #37763 - liigo:rustdoc-playground, r=alexcrichton | bors | -4/+2 |
| 2016-11-17 | doc: nits and typos on comments | Tshepang Lekhonkhobe | -17/+17 |
| 2016-11-16 | Auto merge of #37773 - ollie27:rustdoc_inline_glob, r=brson | bors | -35/+17 |
| 2016-11-14 | rustdoc: Fix some local inlining issues | Oliver Middleton | -35/+17 |
| 2016-11-14 | rustdoc: add cli argument `--playground-url` | Liigo | -4/+2 |
| 2016-11-13 | do not use deprecated text for unstable docs | Andy Russell | -4/+9 |
| 2016-11-12 | Auto merge of #37728 - QuietMisdreavus:rustdoc-enum-struct, r=GuillaumeGomez | bors | -3/+32 |
| 2016-11-12 | rustdoc: fold fields for enum struct variants into a docblock | QuietMisdreavus | -3/+32 |