-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Closed
Labels
A-rustdoc-searchArea: Rustdoc's search featureArea: Rustdoc's search featureC-bugCategory: This is a bug.Category: This is a bug.P-criticalCritical priorityCritical priorityT-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.regression-from-stable-to-stablePerformance or correctness regression from one stable version to another.Performance or correctness regression from one stable version to another.
Description
Compare these two rankings:
- https://doc.rust-lang.org/1.81.0/std/?search=write
- https://doc.rust-lang.org/1.82.0/std/?search=write
In 1.81, std::io::Write
shows up as number 5, after three functions called write
in std::{fmt, fs, ptr} and after std::fmt::Write. These results look decent enough to me.
In 1.82, std::io::Write
is at number 36, after things like <std::io::Stdout as std::io::Write>::write
. I don't think there is any justification for <std::io::Stdout as std::io::Write>::write
and std::io::Write::write
to outrank std::io::Write
when searching for "write".
The most recent nightly continues to be affected (https://doc.rust-lang.org/nightly/std/?search=write).
Metadata
Metadata
Assignees
Labels
A-rustdoc-searchArea: Rustdoc's search featureArea: Rustdoc's search featureC-bugCategory: This is a bug.Category: This is a bug.P-criticalCritical priorityCritical priorityT-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.regression-from-stable-to-stablePerformance or correctness regression from one stable version to another.Performance or correctness regression from one stable version to another.