about summary refs log tree commit diff
path: root/src/librustdoc/html/toc.rs
AgeCommit message (Expand)AuthorLines
2022-05-24fix clippy perf lintsklensy-2/+5
2022-05-21Remove `crate` visibility modifier in libs, testsJacob Pratt-7/+7
2021-01-01clippy fixes for librustdocMatthias Krüger-1/+1
2020-11-15Make all rustdoc functions and structs crate-privateJoshua Nelson-6/+6
2020-05-02fix rustdoc warningsTshepang Lekhonkhobe-3/+3
2020-04-24Avoid unused Option::map resultsJosh Stone-2/+2
2019-12-22Format the worldMark Rousskov-9/+11
2019-09-13Move Toc printing from fmt::DisplayMark Rousskov-21/+16
2019-07-01Remove needless lifetimesJeremy Stucki-1/+1
2019-06-16Separate librustcdoc modulechansuke-82/+1
2019-02-23Transition librustdoc to 2018 editionHirokazu Hata-2/+2
2019-02-10rustc: doc commentsAlexander Regueiro-1/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-07Various minor/cosmetic improvements to codeAlexander Regueiro-6/+6
2018-07-27Prefer to_string() to format!()ljedrz-1/+1
2017-08-17Rollup merge of #43891 - Fourchaux:master, r=steveklabnikCorey Farwell-1/+1
2017-08-15use field init shorthand EVERYWHEREZack M. Davis-4/+4
2017-08-15Fix typos & us spellingsFourchaux-1/+1
2016-10-31Changed most vec! invocations to use square bracesiirelu-2/+2
2016-03-22fix alignmentJorge Aparicio-4/+4
2016-03-22try! -> ?Jorge Aparicio-3/+3
2015-10-08typos: fix a grabbag of typos all over the placeCristi Cobzarenco-2/+2
2015-06-08Replace usage of String::from_str with String:fromSimon Sapin-1/+1
2015-04-24Change name of unit test sub-module to "tests".Johannes Oertel-1/+1
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-1/+1
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-4/+3
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-1/+1
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-1/+1
2015-01-20std: Rename Show/String to Debug/DisplayAlex Crichton-3/+3
2015-01-06More test fixesAlex Crichton-2/+0
2015-01-06core: split into fmt::Show and fmt::StringSean McArthur-0/+8
2015-01-03sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rsJorge Aparicio-3/+3
2014-12-10Fix inappropriate ## headingsSteve Klabnik-0/+4
2014-09-16Fallout from renamingAaron Turon-1/+1
2014-06-15Register new snapshotsAlex Crichton-1/+1
2014-06-10Fix more misspelled comments and strings.Joseph Crail-4/+4
2014-06-06Rename Iterator::len to countAaron Turon-1/+1
2014-05-30std: Rename {Eq,Ord} to Partial{Eq,Ord}Alex Crichton-3/+3
2014-05-28std: Remove format_strbuf!()Alex Crichton-1/+1
2014-05-27std: Rename strbuf operations to stringRicho Healey-5/+5
2014-05-24core: rename strbuf::StrBuf to string::StringRicho Healey-7/+7
2014-05-15Updates with core::fmt changesAlex Crichton-3/+3
2014-05-12librustdoc: Remove all `~str` usage from librustdoc.Patrick Walton-11/+15
2014-04-18Replace all ~"" with "".to_owned()Richo Healey-2/+2
2014-04-10libstd: Implement `StrBuf`, a new string buffer type like `Vec`, andPatrick Walton-8/+9
2014-03-31rustdoc: Switch field privacy as necessaryAlex Crichton-8/+8
2014-03-20Removing imports of std::vec_ng::VecAlex Crichton-1/+0
2014-03-20rename std::vec_ng -> std::vecDaniel Micay-1/+1
2014-03-09rustdoc: add table-of-contents recording & rendering, use it with plainHuon Wilson-0/+269