about summary refs log tree commit diff
path: root/src/librustdoc/html
AgeCommit message (Expand)AuthorLines
2015-02-24rustc_resolve: use the visitor model more, remove redundant repeated lookups.Eduard Burtescu-3/+0
2015-02-22Auto merge of #22466 - Kimundi:str_pattern_ai_safe, r=aturonbors-1/+1
2015-02-22Rollup merge of #22592 - nikomatsakis:deprecate-bracket-bracket, r=aturonManish Goregaokar-1/+1
2015-02-22Rollup merge of #22578 - nagisa:deprecated-fallout, r=alexcrichtonManish Goregaokar-12/+15
2015-02-20Remove remaining uses of `[]`. This time I tried to use deref coercions where...Niko Matsakis-1/+1
2015-02-20Escape some rustdoc stringsSimonas Kazlauskas-12/+15
2015-02-20Fix style fallout from 204e2bd442Simonas Kazlauskas-2/+17
2015-02-20Addressed PR commentsMarvin Löbel-1/+1
2015-02-18rollup merge of #22502: nikomatsakis/deprecate-bracket-bracketAlex Crichton-1/+1
2015-02-18Round 1 fixes and rebase conflictsAlex Crichton-2/+2
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-1/+1
2015-02-18rollup merge of #22498: nagisa/style-fixesAlex Crichton-4/+3
2015-02-18std: Implement CString-related RFCsAlex Crichton-2/+2
2015-02-18Fix inconsistent spacing of collapse all buttonSimonas Kazlauskas-2/+1
2015-02-18Style all docblock links properlySimonas Kazlauskas-2/+2
2015-02-17Rollup merge of #22273 - nagisa:doc-deprecated, r=alexcrichtonManish Goregaokar-5/+18
2015-02-17Rollup merge of #22369 - nagisa:docblock-table, r=steveklabnikManish Goregaokar-0/+21
2015-02-15Add styles for docblock tablesSimonas Kazlauskas-0/+21
2015-02-15Count and show the deprecated attribute againSimonas Kazlauskas-5/+18
2015-02-13rustdoc: Show must_use attributeSeo Sanghyeon-1/+19
2015-02-10rollup merge of #22097: cllns/fix-fallback-fontsAlex Crichton-1/+1
2015-02-09Make fallback font 'serif', rather than 'sans-serif' fontsSean Collins-1/+1
2015-02-08Rename Show to Debug, String to DisplayAlexander Korolkov-1/+1
2015-02-08Auto merge of #21999 - tomjakubowski:rustdoc-fixes, r=alexcrichtonbors-7/+16
2015-02-07Auto merge of #21505 - GuillaumeGomez:interned_string, r=alexcrichtonbors-1/+1
2015-02-06librustdoc has been updatedGuillaumeGomez-1/+1
2015-02-06Auto merge of #21926 - mzabaluev:raw-lifetime, r=alexcrichtonbors-13/+15
2015-02-06Print full Type::ResolvedPaths starting with SelfTom Jakubowski-1/+2
2015-02-06rustdoc: Show non-Rust ABIs on methodsTom Jakubowski-6/+14
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-121/+111
2015-02-05Replace usage of slice::from_raw_buf with slice::from_raw_partsMikhail Zabaluev-13/+15
2015-02-04remove all kind annotations from closuresJorge Aparicio-2/+2
2015-02-02`for x in xs.into_iter()` -> `for x in xs`Jorge Aparicio-1/+1
2015-02-02`for x in xs.iter_mut()` -> `for x in &mut xs`Jorge Aparicio-1/+1
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-43/+43
2015-01-30Test fixes and rebase conflictsAlex Crichton-2/+2
2015-01-29s/Show/Debug/gJorge Aparicio-1/+1
2015-01-29convert remaining `range(a, b)` to `a..b`Jorge Aparicio-1/+1
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-2/+2
2015-01-29Auto merge of #21680 - japaric:slice, r=alexcrichtonbors-6/+4
2015-01-28Merge remote-tracking branch 'origin/master' into rollupManish Goregaokar-16/+6
2015-01-27Merge remote-tracking branch 'rust-lang/master'Brian Anderson-23/+23
2015-01-27Rollup merge of #21597 - iKevinY:mobile-api-docs, r=cmrManish Goregaokar-1/+8
2015-01-27cleanup: s/`v.slice*()`/`&v[a..b]`/g + remove redundant `as_slice()` callsJorge Aparicio-6/+4
2015-01-26std: Rename Writer::write to Writer::write_allAlex Crichton-1/+1
2015-01-26Fallout of io => old_ioAlex Crichton-22/+22
2015-01-25Merge remote-tracking branch 'rust-lang/master'Brian Anderson-141/+243
2015-01-24Improve mobile-friendliness of API docsKevin Yap-1/+8
2015-01-23Deprecated attributes don't take 'feature' names and are paired with stable/u...Brian Anderson-8/+3
2015-01-23Auto merge of #20221 - liigo:rustdoc-sidebar-tooltips-v3, r=alexcrichtonbors-15/+130