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
The String type is the most common string type that has ownership over the contents of the string. It has a close relationship with its borrowed counterpart, the primitive str.
When you hover on something in std, like
String
:The String type is the most common string type that has ownership over the contents of the string. It has a close relationship with its borrowed counterpart, the primitive str.
There is a link to str:
https://docs.rs/alloc/*/alloc/str/index.html
Which is broken and it should be:
https://doc.rust-lang.org/std/primitive.str.html
It is not specific to primitives and every link to std documentation is affected, another example is extend:
https://docs.rs/core/*/core/iter/traits/collect/trait.Extend.html
But it should be:
https://doc.rust-lang.org/std/iter/trait.Extend.html
The text was updated successfully, but these errors were encountered: