about summary refs log tree commit diff
path: root/src/librustdoc/html
AgeCommit message (Expand)AuthorLines
2020-05-02fix rustdoc warningsTshepang Lekhonkhobe-3/+3
2020-04-25Rollup merge of #71544 - cuviper:filter_map_next, r=Mark-SimulacrumDylan DPC-8/+3
2020-04-24Replace filter_map().next() calls with find_map()Josh Stone-8/+3
2020-04-24Avoid unused Option::map resultsJosh Stone-2/+2
2020-04-23Fix librustdoc error due to `as_local_hir_id` changesmarmeladema-2/+2
2020-04-23Update LangString::parse usage in markdown testsGuillaume Gomez-1/+1
2020-04-23Create new rustdoc lint to check for code blocks tagsGuillaume Gomez-4/+114
2020-04-20Rollup merge of #71250 - GuillaumeGomez:use-json-instead-of-js, r=kinnisonDylan DPC-5/+41
2020-04-17Replace big JS dict with JSON parsingGuillaume Gomez-5/+41
2020-04-16Dogfood or_patterns in rustdocJosh Stone-12/+11
2020-04-16Rollup merge of #70990 - GuillaumeGomez:rustdoc-cleanup, r=ollie27Dylan DPC-5/+5
2020-04-13Rollup merge of #70656 - GuillaumeGomez:scrollbar-display, r=kinnisonDylan DPC-0/+64
2020-04-10Improve rustdoc source code a bitGuillaume Gomez-5/+5
2020-04-08rustdoc: Don't try to load source files from external cratesOliver Middleton-5/+6
2020-04-07Extend sidebar scrollbar changes to all scrollbarsGuillaume Gomez-13/+41
2020-04-07Improve scrollbar display in rustdocGuillaume Gomez-0/+36
2020-03-31more clippy fixesMatthias Krüger-73/+65
2020-03-30rustc -> rustc_middle part 3 (rustfmt)Mazdak Farrokhzad-3/+3
2020-03-30rustc -> rustc_middle part 2Mazdak Farrokhzad-3/+3
2020-03-28Fix rustdoc.css CSS tab-size property0xd4d-2/+2
2020-03-22don't create variable bindings just to return the bound value immediately (cl...Matthias Krüger-3/+2
2020-03-19Auto merge of #69402 - GuillaumeGomez:extend-search, r=kinnisonbors-88/+155
2020-03-19Rollup merge of #70005 - GuillaumeGomez:code-block-signs, r=kinnisonMazdak Farrokhzad-13/+21
2020-03-17Update rustdoc test and remove TODO commentGuillaume Gomez-1/+0
2020-03-16Update src/librustdoc/html/static/main.js Guillaume Gomez-1/+1
2020-03-16Rename render::Type to improve namingGuillaume Gomez-8/+8
2020-03-16formattingGuillaume Gomez-27/+24
2020-03-16Support type search for arguments and returned typesGuillaume Gomez-87/+157
2020-03-15Add FIXME notevarkor-1/+1
2020-03-15Render full attributes in rustdocvarkor-22/+2
2020-03-14Make ignore and compile fail signs more visibleGuillaume Gomez-13/+21
2020-03-14Rollup merge of #69802 - matthiaskrgr:cl1ppy, r=Dylan-DPCYuki Okushi-40/+34
2020-03-11Rollup merge of #66472 - GuillaumeGomez:show-coverage-json, r=ollie27Mazdak Farrokhzad-1/+3
2020-03-10Auto merge of #66364 - Centril:cleanup-macro-def, r=petrochenkov,eddybbors-2/+2
2020-03-10Store `TokenStream` in `rmeta::MacroDef`.Mazdak Farrokhzad-2/+2
2020-03-10Rollup merge of #69514 - GuillaumeGomez:remove-spotlight, r=kinnisonMazdak Farrokhzad-280/+7
2020-03-07rustdoc: remove redundant static lifetimes (clippy::redundant_static_lifetimes)Matthias Krüger-28/+28
2020-03-07iterate over a maps values directly. (clippy::for_kv_map)Matthias Krüger-1/+1
2020-03-07Use ?-operator in more places (clippy::question_mark, had some false negative...Matthias Krüger-5/+1
2020-03-07rustdoc: Use .any(p) instead of find(p).is_some(). (clippy::search_is_some)Matthias Krüger-5/+3
2020-03-07rustdoc: don't call into_iter() on iterator. (clippy::identity_conversion)Matthias Krüger-1/+1
2020-03-06fix various typosMatthias Krüger-2/+2
2020-03-05Rollup merge of #69736 - matthiaskrgr:even_more_clippy, r=Dylan-DPCDylan DPC-14/+10
2020-03-05Use simple 'for i in x' loops instead of 'while let Some(x) = x.next()' loops...Matthias Krüger-6/+2
2020-03-05Const items have by default a static lifetime, there's no need to annotate it...Matthias Krüger-6/+6
2020-03-05Remove redundant patterns when matching ( x @ _ to x) (clippy::redundant_pa...Matthias Krüger-2/+2
2020-03-04Use .as_deref() instead of .as_ref().map(Deref::deref) (clippy::option_as_ref...Matthias Krüger-2/+2
2020-03-02Put back output-format option for show-coverageGuillaume Gomez-1/+3
2020-03-01Rollup merge of #69598 - ollie27:rustdoc_crate-version_escape, r=GuillaumeGomezDylan DPC-2/+3
2020-03-01Auto merge of #69592 - petrochenkov:nosyntax, r=Centrilbors-3/+3