summary refs log tree commit diff
path: root/src/librustdoc/html/render.rs
AgeCommit message (Expand)AuthorLines
2018-10-29Remove redundant cloneShotaro Yamada-4/+4
2018-10-19Prefer `Default::default` over `FxHash*::default` in struct constructorsOliver Scherer-10/+10
2018-10-19Deprecate the `FxHashMap()` and `FxHashSet()` constructor function hackOliver Scherer-15/+15
2018-10-11Fix mobile doc displayGuillaume Gomez-2/+3
2018-09-27show "all items" link even if crate doesn't have a versionQuietMisdreavus-4/+5
2018-09-27add attributes/derives to "all items" pageQuietMisdreavus-0/+8
2018-09-26add derive macros' helper attributes to doc outputQuietMisdreavus-0/+8
2018-09-26add declaration blocks to attribute/derive pagesQuietMisdreavus-4/+18
2018-09-25handle proc-macros as macros instead of functionsQuietMisdreavus-0/+21
2018-09-20shuffle ownership of `external_traits`QuietMisdreavus-1/+1
2018-09-20refactor: move `access_levels` into RenderInfoQuietMisdreavus-2/+4
2018-09-20don't index trait impls if the trait isn't also documentedQuietMisdreavus-5/+29
2018-09-20add a bunch of debug printsQuietMisdreavus-0/+4
2018-09-18Rollup merge of #54097 - GuillaumeGomez:remove-keyword-namespace, r=QuietMisd...Guillaume Gomez-2/+2
2018-09-16Rollup merge of #53941 - kzys:sort-impls, r=GuillaumeGomezGuillaume Gomez-4/+20
2018-09-14Auto merge of #52962 - GuillaumeGomez:few-things, r=QuietMisdreavusbors-1/+2
2018-09-12rustdoc: Sort implementorsKazuyoshi Kato-4/+20
2018-09-12Auto merge of #53409 - GuillaumeGomez:associated-const-value, r=QuietMisdreavusbors-40/+16
2018-09-10Remove namespace for keywordsGuillaume Gomez-2/+2
2018-09-09rustdoc: Remove generated blanket impls from trait pagesOliver Middleton-14/+12
2018-09-06Don't show default docsGuillaume Gomez-16/+11
2018-09-06Fix hover on implsGuillaume Gomez-28/+28
2018-09-01Rollup merge of #53801 - GuillaumeGomez:duplicated-foreign-type-impls, r=Quie...kennytm-5/+9
2018-08-31Auto merge of #51384 - QuietMisdreavus:extern-version, r=GuillaumeGomezbors-2/+14
2018-08-29Prevent duplicated impl on foreign typesGuillaume Gomez-5/+9
2018-08-28Use FxHash{Map,Set} instead of the default Hash{Map,Set} everywhere in rustc.Eduard-Mihai Burtescu-28/+29
2018-08-26Remove static and const initialization from documentationGuillaume Gomez-17/+4
2018-08-25Don't show associated const value anymoreGuillaume Gomez-23/+12
2018-08-23use String::new() instead of String::from(""), "".to_string(), "".to_owned() ...Matthias Krüger-4/+4
2018-08-21Rollup merge of #53496 - matthiaskrgr:codespell_08_2018, r=varkorkennytm-1/+1
2018-08-19mv (mod) codemap source_mapDonato Sciarra-1/+1
2018-08-19Fix typos found by codespell.Matthias Krüger-1/+1
2018-08-18Use the new Entry::or_default method where possible.Eduard-Mihai Burtescu-4/+4
2018-08-05Change rustdoc style so fully qualified names do not overlap src linksMike Boutin-30/+30
2018-08-02Fix trait item doc setting, add new setting, start hiding elements by default...Guillaume Gomez-1/+2
2018-07-31Cleanup highlighting codeMark Rousskov-3/+1
2018-07-31Remove global derive_id and reset_ids functionsMark Rousskov-88/+59
2018-07-31Further extract error code switchMark Rousskov-18/+22
2018-07-30Auto merge of #52805 - ljedrz:format_str_literal, r=petrochenkovbors-1/+1
2018-07-29Auto merge of #52767 - ljedrz:avoid_format, r=petrochenkovbors-6/+6
2018-07-29Auto merge of #52764 - sinkuu:cleanup, r=nikomatsakisbors-4/+2
2018-07-28Auto merge of #52585 - GuillaumeGomez:generic-impls, r=QuietMisdreavusbors-34/+61
2018-07-28Don't format!() string literalsljedrz-1/+1
2018-07-28Don't display full blanket implementation and put it into its own sectionGuillaume Gomez-17/+42
2018-07-28Rollup merge of #52781 - ljedrz:avoid_vec_arguments, r=nikomatsakiskennytm-3/+3
2018-07-27Use slices where a vector is not necessaryljedrz-3/+3
2018-07-27Use str::repeatShotaro Yamada-4/+2
2018-07-27Prefer to_string() to format!()ljedrz-6/+6
2018-07-25Add missing dynTatsuyuki Ishi-1/+1
2018-07-22Improve codeGuillaume Gomez-10/+1