From aa46089f2f7a7ddeb77d3ed963ace150357786f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0smail=20Ar=C4=B1l=C4=B1k?= Date: Thu, 27 Jul 2023 12:00:52 +0300 Subject: [PATCH] fix(salsa.md): remove duplicate "To Be" verb --- src/salsa.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/salsa.md b/src/salsa.md index 66f9d7479..193e02220 100644 --- a/src/salsa.md +++ b/src/salsa.md @@ -168,7 +168,7 @@ belongs to, in addition to the other keys. ```rust,ignore ///This is going to be the definition of the `ast` query in the `Parser` trait. ///So, when the query `ast` is invoked, and it needs to be recomputed, Salsa is going to call this function -///and it's is going to give it the database as `impl Parser`. +///and it's going to give it the database as `impl Parser`. ///The function doesn't need to be aware of all the queries of all the query groups fn ast(db: &impl Parser, name: String) -> String { //! Note, `impl Parser` is used here but `dyn Parser` works just as well