about summary refs log tree commit diff
path: root/src/librustdoc/html/format.rs
AgeCommit message (Expand)AuthorLines
2015-03-23Fallout in stdlib, rustdoc, rustc, etc. For most maps, converted uses ofNiko Matsakis-3/+3
2015-02-24rustc_resolve: use the visitor model more, remove redundant repeated lookups.Eduard Burtescu-3/+0
2015-02-20Escape some rustdoc stringsSimonas Kazlauskas-12/+15
2015-02-15Count and show the deprecated attribute againSimonas Kazlauskas-5/+18
2015-02-08Rename Show to Debug, String to DisplayAlexander Korolkov-1/+1
2015-02-06Print full Type::ResolvedPaths starting with SelfTom Jakubowski-1/+2
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-33/+30
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-9/+9
2015-01-29Auto merge of #21680 - japaric:slice, r=alexcrichtonbors-1/+1
2015-01-27cleanup: s/`v.slice*()`/`&v[a..b]`/g + remove redundant `as_slice()` callsJorge Aparicio-1/+1
2015-01-25Merge remote-tracking branch 'rust-lang/master'Brian Anderson-27/+27
2015-01-23Deprecated attributes don't take 'feature' names and are paired with stable/u...Brian Anderson-8/+3
2015-01-21Add 'feature' and 'since' to stability attributesBrian Anderson-3/+3
2015-01-21rollup merge of #20179: eddyb/blind-itemsAlex Crichton-1/+1
2015-01-21Remove unused stability levels from compilerBrian Anderson-8/+3
2015-01-21rollup merge of #21457: alexcrichton/issue-21436Alex Crichton-26/+26
2015-01-21rustdoc: fix fallout of merging ast::ViewItem into ast::Item.Eduard Burtescu-1/+1
2015-01-20std: Rename Show/String to Debug/DisplayAlex Crichton-26/+26
2015-01-19remove unnecessary parentheses from range notationJorge Aparicio-1/+1
2015-01-18Make output type in ast::FnDecl optionalSeo Sanghyeon-0/+1
2015-01-14auto merge of #21061 : japaric/rust/range, r=nick29581bors-2/+2
2015-01-12cleanup: `&foo[0..a]` -> `&foo[..a]`Jorge Aparicio-2/+2
2015-01-12rustdoc: Remove traces of old closuresTom Jakubowski-55/+0
2015-01-12rustdoc: Fix where clauses on re-exportsTom Jakubowski-2/+2
2015-01-08Make rustdoc use the `[_; N]` syntax instead of `[_, ..N]`Ken Tossell-1/+1
2015-01-07rollup merge of #20721: japaric/snapAlex Crichton-2/+2
2015-01-07rollup merge of #20725: tomjakubowski/rustdoc-miscAlex Crichton-2/+18
2015-01-07rollup merge of #20722: alexcrichton/audit-showAlex Crichton-3/+18
2015-01-07rustdoc: Render associated type bindingsTom Jakubowski-2/+25
2015-01-07std: Tweak String implementationsAlex Crichton-3/+18
2015-01-07use slicing sugarJorge Aparicio-2/+2
2015-01-07register new snapshotsJorge Aparicio-193/+0
2015-01-07Register new snapshotsAlex Crichton-193/+0
2015-01-06rollup merge of #20481: seanmonstar/fmt-show-stringAlex Crichton-4/+197
2015-01-07falloutNick Cameron-3/+3
2015-01-06core: split into fmt::Show and fmt::StringSean McArthur-4/+197
2015-01-07Replace full slice notation with index callsNick Cameron-2/+2
2015-01-03sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rsJorge Aparicio-4/+4
2015-01-01std: Enforce Unicode in fmt::WriterAlex Crichton-29/+29
2014-12-30Fallout from stabilizationAaron Turon-1/+1
2014-12-30Remove the def-id from type parameters. Having this def-id was bad for severa...Niko Matsakis-3/+2
2014-12-29rollup merge of #20269: dirk/indent-whereAlex Crichton-1/+2
2014-12-27Indent where clause in rustdocDirk Gadsden-1/+2
2014-12-26Changes to RustDocNick Cameron-6/+10
2014-12-25auto merge of #20180 : jroesch/rust/clean-where-predicate, r=alexcrichtonbors-2/+20
2014-12-24rustdoc: Use unboxed closure sugarTom Jakubowski-39/+58
2014-12-24rustdoc: render higher-rank trait boundsTom Jakubowski-9/+25
2014-12-24rustdoc: render `for<>` on old closure lifetimesTom Jakubowski-2/+2
2014-12-24Address code review nitsJared Roesch-3/+3
2014-12-23Support all variants of WherePredicateJared Roesch-2/+20