From 53c7ebaaf537fc7078d742fdb063fb1f675bca77 Mon Sep 17 00:00:00 2001 From: Shoyu Vanilla Date: Thu, 19 Dec 2024 00:55:52 +0900 Subject: [PATCH] Run `rustfmt` --- src/ingredient.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ingredient.rs b/src/ingredient.rs index 6e9ef836..8a46205d 100644 --- a/src/ingredient.rs +++ b/src/ingredient.rs @@ -31,7 +31,7 @@ pub trait Jar: Any { /// Methods on the Salsa database available to jars while they are creating their ingredients. pub trait JarAux { /// Return index of first ingredient from `jar` (based on the dynamic type of `jar`). - /// Returns `None` if the jar has not yet been added. + /// Returns `None` if the jar has not yet been added. /// Used by tracked functions to lookup the ingredient index for the salsa struct they take as argument. fn lookup_jar_by_type(&self, jar: &dyn Jar) -> Option;