Skip to content

Commit e3d2d9b

Browse files
committed
reformatted rustdoc/cross-crate-info, fixing trailing newline issue
1 parent dc024fe commit e3d2d9b

File tree

27 files changed

+2
-46
lines changed

27 files changed

+2
-46
lines changed
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
//@ build-aux-docs
2-
3-
42
pub struct Quebec;
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
//@ aux-build:q.rs
22
//@ build-aux-docs
3-
4-
53
extern crate q;
64
pub trait Tango {}

tests/rustdoc/cross-crate-info/cargo-transitive-no-index/s.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
//@ aux-build:t.rs
22
//@ build-aux-docs
3-
43
//@ has q/struct.Quebec.html
54
//@ has s/struct.Sierra.html
65
//@ has t/trait.Tango.html
@@ -12,7 +11,6 @@
1211

1312
// We document multiple crates into the same output directory, which
1413
// merges the cross-crate information. Everything is available.
15-
1614
extern crate t;
1715
pub struct Sierra;
1816
impl t::Tango for Sierra {}

tests/rustdoc/cross-crate-info/cargo-transitive/auxiliary/q.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22
//@ doc-flags:--enable-index-page
33
//@ doc-flags:-Zunstable-options
44

5-
65
pub struct Quebec;

tests/rustdoc/cross-crate-info/cargo-transitive/auxiliary/t.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33
//@ doc-flags:--enable-index-page
44
//@ doc-flags:-Zunstable-options
55

6-
76
extern crate q;
87
pub trait Tango {}

tests/rustdoc/cross-crate-info/cargo-transitive/s.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
// We document multiple crates into the same output directory, which
2121
// merges the cross-crate information. Everything is available.
22-
2322
extern crate t;
2423
pub struct Sierra;
2524
impl t::Tango for Sierra {}
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
//@ build-aux-docs
2-
3-
42
pub trait Foxtrot {}
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
//@ aux-build:f.rs
22
//@ build-aux-docs
3-
43
//@ has e/enum.Echo.html
54
//@ has f/trait.Foxtrot.html
65
//@ hasraw e/enum.Echo.html 'Foxtrot'
@@ -10,7 +9,6 @@
109

1110
// document two crates in the same way that cargo does. do not provide
1211
// --enable-index-page
13-
1412
extern crate f;
1513
pub enum Echo {}
1614
impl f::Foxtrot for Echo {}

tests/rustdoc/cross-crate-info/cargo-two/auxiliary/f.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22
//@ doc-flags:--enable-index-page
33
//@ doc-flags:-Zunstable-options
44

5-
65
pub trait Foxtrot {}

tests/rustdoc/cross-crate-info/cargo-two/e.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
// document two crates in the same way that cargo does, writing them both
1818
// into the same output directory
19-
2019
extern crate f;
2120
pub enum Echo {}
2221
impl f::Foxtrot for Echo {}

0 commit comments

Comments
 (0)