about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorİsmail Arılık <arilik.ismail@gmail.com>2023-07-27 12:00:52 +0300
committerTshepang Mbambo <tshepang@gmail.com>2023-07-27 11:28:02 +0200
commit1624b709b63bb1b8c2cfedcb98cd51df50bf58a3 (patch)
tree62595c6565bce746b26be913fc2ab7608f8d6935 /src/doc/rustc-dev-guide
parentb1f763a57c0733892b21ce84c7d8e7b3d339a348 (diff)
downloadrust-1624b709b63bb1b8c2cfedcb98cd51df50bf58a3.tar.gz
rust-1624b709b63bb1b8c2cfedcb98cd51df50bf58a3.zip
fix(salsa.md): remove duplicate "To Be" verb
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/salsa.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/salsa.md b/src/doc/rustc-dev-guide/src/salsa.md
index 66f9d74799d..193e022201d 100644
--- a/src/doc/rustc-dev-guide/src/salsa.md
+++ b/src/doc/rustc-dev-guide/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