From 23f71a9a1fa4e075dae7c3beeec3da5ac2aa1e6d Mon Sep 17 00:00:00 2001 From: Lee Danilek Date: Fri, 10 Jan 2025 12:27:44 -0500 Subject: [PATCH] fix typo in CacheKey comment (#33049) GitOrigin-RevId: 8f971ed28ab138ced243e23e95fafdfc20d9112f --- crates/application/src/cache/mod.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/application/src/cache/mod.rs b/crates/application/src/cache/mod.rs index bb347e38..fb959fa9 100644 --- a/crates/application/src/cache/mod.rs +++ b/crates/application/src/cache/mod.rs @@ -118,10 +118,10 @@ impl InstanceId { } /// A cache key representing a specific query request, before it runs. -/// It may have more specific information than a `CacheKey`, because multiple -/// query requests may be served by the same cache entry. -/// e.g. if a query does not check `ctx.auth`, then `TargetCacheKey` -/// contains the identity, but `CacheKey` does not. +/// It may have more specific information than a `StoredCacheKey`, because +/// multiple query requests may be served by the same cache entry. +/// e.g. if a query does not check `ctx.auth`, then `RequestedCacheKey` +/// contains the identity, but `StoredCacheKey` does not. #[derive(Clone, Eq, PartialEq, Hash, Debug)] pub struct RequestedCacheKey { instance: InstanceId,