File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -77,11 +77,11 @@ pub(crate) enum Condition {
77
77
pub ( crate ) const PASSES : & [ Pass ] = & [
78
78
CHECK_DOC_CFG ,
79
79
CHECK_DOC_TEST_VISIBILITY ,
80
+ PROPAGATE_DOC_CFG ,
80
81
STRIP_ALIASED_NON_LOCAL ,
81
82
STRIP_HIDDEN ,
82
83
STRIP_PRIVATE ,
83
84
STRIP_PRIV_IMPORTS ,
84
- PROPAGATE_DOC_CFG ,
85
85
PROPAGATE_STABILITY ,
86
86
COLLECT_INTRA_DOC_LINKS ,
87
87
COLLECT_TRAIT_IMPLS ,
@@ -94,11 +94,11 @@ pub(crate) const DEFAULT_PASSES: &[ConditionalPass] = &[
94
94
ConditionalPass :: always ( COLLECT_TRAIT_IMPLS ) ,
95
95
ConditionalPass :: always ( CHECK_DOC_TEST_VISIBILITY ) ,
96
96
ConditionalPass :: always ( CHECK_DOC_CFG ) ,
97
+ ConditionalPass :: always ( COLLECT_INTRA_DOC_LINKS ) ,
97
98
ConditionalPass :: always ( STRIP_ALIASED_NON_LOCAL ) ,
98
99
ConditionalPass :: new ( STRIP_HIDDEN , WhenNotDocumentHidden ) ,
99
100
ConditionalPass :: new ( STRIP_PRIVATE , WhenNotDocumentPrivate ) ,
100
101
ConditionalPass :: new ( STRIP_PRIV_IMPORTS , WhenDocumentPrivate ) ,
101
- ConditionalPass :: always ( COLLECT_INTRA_DOC_LINKS ) ,
102
102
ConditionalPass :: always ( PROPAGATE_DOC_CFG ) ,
103
103
ConditionalPass :: always ( PROPAGATE_STABILITY ) ,
104
104
ConditionalPass :: always ( RUN_LINTS ) ,
You can’t perform that action at this time.
0 commit comments