Closed
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).