File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
branches/try2/src/librustdoc Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
5
5
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
- refs/heads/try2: 9a292b3da5585f0230ed5d0e198531b87633b832
8
+ refs/heads/try2: 472d9f33df5971d0b39c1c7dcb54f60ee8a4e383
9
9
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
10
10
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
11
11
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
Original file line number Diff line number Diff line change @@ -276,7 +276,7 @@ fn write_desc(
276
276
}
277
277
278
278
fn write_sections ( ctxt : & Ctxt , sections : & [ doc:: Section ] ) {
279
- for vec :: each ( sections) |section| {
279
+ for sections. each |section| {
280
280
write_section( ctxt, copy * section) ;
281
281
}
282
282
}
@@ -439,7 +439,7 @@ fn write_variants(
439
439
440
440
write_header_ ( ctxt, H4 , ~"Variants ") ;
441
441
442
- for vec :: each ( docs) |variant| {
442
+ for docs. each |variant| {
443
443
write_variant( ctxt, copy * variant) ;
444
444
}
445
445
@@ -465,7 +465,7 @@ fn write_trait(ctxt: &Ctxt, doc: doc::TraitDoc) {
465
465
}
466
466
467
467
fn write_methods ( ctxt : & Ctxt , docs : & [ doc:: MethodDoc ] ) {
468
- for vec :: each ( docs) |doc| {
468
+ for docs. each |doc| {
469
469
write_method( ctxt, copy * doc) ;
470
470
}
471
471
}
You can’t perform that action at this time.
0 commit comments