You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looking into the source code, I found out that this hyperlink redirects to struct.BTreeMap.html. This could work for the type aliases of BTreeSet as std::collections::BTreeSet, for the reason that struct.BTreeSet.html and struct.BTreeMap.html are together in the same path, but does not work for std::collections::btree_set::BTreeSet as there isn't a BTreeMap in std::collections::btree_set.
Additionally, there is also an incorrect redirection on std::colletions::hash_set::HashSet where there is a hyperlink for struct HashMap which does not exist in std::collections::hash_set.
The rust version for doc.rust-lang.org is Version 1.28.0 (9634041f0 2018-07-30).
The text was updated successfully, but these errors were encountered:
luojia65
changed the title
Incorrect URL on the doc of BTreeMap
Incorrect URL redirection in the doc of BTreeMapAug 14, 2018
When I open the doc for
std::collections::btree_map::BTreeMap
, I found a hyperlink referring toBTreeMap
on the second line, which incorrectly redirect to:instead of one of the following:
thus caused an HTTP 404 error.
Looking into the source code, I found out that this hyperlink redirects to
struct.BTreeMap.html
. This could work for the type aliases ofBTreeSet
asstd::collections::BTreeSet
, for the reason thatstruct.BTreeSet.html
andstruct.BTreeMap.html
are together in the same path, but does not work forstd::collections::btree_set::BTreeSet
as there isn't aBTreeMap
instd::collections::btree_set
.Additionally, there is also an incorrect redirection on
std::colletions::hash_set::HashSet
where there is a hyperlink for structHashMap
which does not exist instd::collections::hash_set
.The rust version for
doc.rust-lang.org
isVersion 1.28.0 (9634041f0 2018-07-30)
.The text was updated successfully, but these errors were encountered: