diff options
| author | sjud <64875465+sjud@users.noreply.github.com> | 2021-09-05 13:04:00 -0400 |
|---|---|---|
| committer | Joshua Nelson <github@jyn.dev> | 2021-09-05 12:11:19 -0500 |
| commit | a2fe5e6d9687e96bcf1b2480906f256c34d30779 (patch) | |
| tree | 4fb9fc84788d214e1937296b45a81ecca64b0f4f /src/doc/rustc-dev-guide | |
| parent | 1717971ad4f7332d8f2a10d11c35fc21a63d3f33 (diff) | |
| download | rust-a2fe5e6d9687e96bcf1b2480906f256c34d30779.tar.gz rust-a2fe5e6d9687e96bcf1b2480906f256c34d30779.zip | |
Spelling change intermidiate to intermediate
Very importent change.
Diffstat (limited to 'src/doc/rustc-dev-guide')
| -rw-r--r-- | src/doc/rustc-dev-guide/src/salsa.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/salsa.md b/src/doc/rustc-dev-guide/src/salsa.md index 9bf93727a38..a6a6b970691 100644 --- a/src/doc/rustc-dev-guide/src/salsa.md +++ b/src/doc/rustc-dev-guide/src/salsa.md @@ -44,7 +44,7 @@ something that the library produces, but, for each derived value there's a "pure" function that computes the derived value. 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. 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 /// 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. /// /// This query group is a bunch of **input** queries, that do not rely on any |
