Skip to content

Commit

Permalink
ref(project-cache): Fix more typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Dav1dde committed Nov 12, 2024
1 parent fab39cd commit b094b3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions relay-server/src/services/projects/cache/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ impl ProjectStore {
// Remove the private part.
let Some(private) = self.private.remove(&project_key) else {
// Not possible if all invariants are upheld.
debug_assert!(false, "no private state for evicition");
debug_assert!(false, "no private state for eviction");
return;
};

Expand Down Expand Up @@ -601,7 +601,7 @@ impl Expiry {
}

/// Instant when a project is scheduled for expiry.
#[must_use = "an expiry time must be used to schedule an evicition"]
#[must_use = "an expiry time must be used to schedule an eviction"]
struct ExpiryTime(Instant);

#[cfg(test)]
Expand Down

0 comments on commit b094b3b

Please sign in to comment.