Spelling change intermidiate to intermediate

Very importent change.
This commit is contained in:
sjud 2021-09-05 13:04:00 -04:00 committed by Joshua Nelson
parent 03420385e1
commit 1ffee15da9
1 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ something that the library produces, but, for each derived value there's a
"pure" function that computes the derived value. "pure" function that computes the derived value.
For example, there might be a function `ast(x: Path) -> AST`. The produced For example, there might be a function `ast(x: Path) -> AST`. The produced
`AST` isn't a final value, it's an intermidiate value that the library would `AST` isn't a final value, it's an intermediate value that the library would
use for the computation. use for the computation.
This means that when you try to compute with the library, Salsa is going to This means that when you try to compute with the library, Salsa is going to
@ -126,7 +126,7 @@ Example input query group:
```rust,ignore ```rust,ignore
/// This attribute will process this tree, produce this tree as output, and produce /// This attribute will process this tree, produce this tree as output, and produce
/// a bunch of intermidiate stuff that Salsa also uses. One of these things is a /// a bunch of intermediate stuff that Salsa also uses. One of these things is a
/// "StorageStruct", whose name we have specified in the attribute. /// "StorageStruct", whose name we have specified in the attribute.
/// ///
/// This query group is a bunch of **input** queries, that do not rely on any /// This query group is a bunch of **input** queries, that do not rely on any