Skip to content

Commit

Permalink
fix typo in CacheKey comment (#33049)
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 8f971ed28ab138ced243e23e95fafdfc20d9112f
  • Loading branch information
ldanilek authored and Convex, Inc. committed Jan 10, 2025
1 parent 350accb commit 23f71a9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/application/src/cache/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 23f71a9

Please sign in to comment.