We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b071eb commit 40cd1a7Copy full SHA for 40cd1a7
src/rustdoc/fold.rs
@@ -109,7 +109,7 @@ fn default_par_fold<T:send>(ctxt: T) -> fold<T> {
109
// Just a convenient wrapper to convert back and forth between
110
// parallel and sequential folds for perf testing
111
fn default_any_fold<T:send>(ctxt: T) -> fold<T> {
112
- default_par_fold(ctxt)
+ default_seq_fold(ctxt)
113
}
114
115
fn default_seq_fold_crate<T>(
@@ -158,7 +158,7 @@ fn default_any_fold_mod<T:send>(
158
fold: fold<T>,
159
doc: doc::moddoc
160
) -> doc::moddoc {
161
- default_par_fold_mod(fold, doc)
+ default_seq_fold_mod(fold, doc)
162
163
164
fn fold_itemtag<T>(fold: fold<T>, doc: doc::itemtag) -> doc::itemtag {
0 commit comments