Open
Description
It's good that rustdoc's search is case-insensitive, to make it easier for people to find what they're looking for. However, if the user types in capitalization that exactly matches (or more closely matches) a given type, rustdoc's search results should prioritize that type over things that don't match in case.
For example, https://doc.rust-lang.org/std/?search=Copy (note the capital C
) should list std::marker::Copy
at the top, not std::fs::copy
.