From 2f1983e4ad96b80d8b7faf3a82c39fd0f9352614 Mon Sep 17 00:00:00 2001 From: Abdur-Rahmaan Janhangeer Date: Mon, 6 May 2024 20:04:53 +0400 Subject: [PATCH] fix typo (#11309) --- crates/red_knot/src/db/jars.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/red_knot/src/db/jars.rs b/crates/red_knot/src/db/jars.rs index f67b7cd651a10..7fd24e4dd3af1 100644 --- a/crates/red_knot/src/db/jars.rs +++ b/crates/red_knot/src/db/jars.rs @@ -10,7 +10,7 @@ use crate::db::query::QueryResult; /// `Database` trait and the jar allows to write queries in isolation without having to know how they get composed at the upper levels. /// /// Salsa further defines a `HasIngredient` trait which slices the jar to a specific storage (e.g. a specific cache). -/// We don't need this just jet because we write our queries by hand. We may want a similar trait if we decide +/// We don't need this just yet because we write our queries by hand. We may want a similar trait if we decide /// to use a macro to generate the queries. pub trait HasJar { /// Gives a read-only reference to the jar.