]> git.lizzy.rs Git - rust.git/commit
Don't use `crate` in link text
authorCamelid <camelidcamel@gmail.com>
Thu, 5 Nov 2020 02:42:37 +0000 (18:42 -0800)
committerCamelid <camelidcamel@gmail.com>
Thu, 5 Nov 2020 02:44:40 +0000 (18:44 -0800)
commit3084a55d54c2e0ee1c97525f64f40b54091b93e4
tree089ea7f67bad94b3a72cea8b2de56e9cd19be6f2
parentf2bbdd0a3257cc980c934a92c5bf9808cf31728c
Don't use `crate` in link text

`crate::` -> `core::`

It looks weird to have `crate::` in the link text and we use the actual
crate name everywhere else.

If anyone is curious, I used this Vim command to update all the links:

    %s/\(\s\)\[`crate::\(.*\)`\]/\1[`core::\2`](crate::\2)/g
library/core/src/intrinsics.rs