Remove unnecessary path prefixes (#4492)

This commit is contained in:
Charlie Marsh 2023-05-18 10:19:09 -04:00 committed by GitHub
parent a8d080c825
commit e8e66f3824
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 252 additions and 324 deletions

View file

@ -90,7 +90,7 @@ impl DerefMut for CacheKeyHasher {
/// * Cache keys must be deterministic where hash keys do not have this constraint. That's why pointers don't implement [`CacheKey`] but they implement [`Hash`].
/// * Ideally, cache keys are portable
///
/// [`Hash`](std::hash::Hash)
/// [`Hash`](Hash)
pub trait CacheKey {
fn cache_key(&self, state: &mut CacheKeyHasher);