From 1ffee15da968b178d02890c4af6239997712a237 Mon Sep 17 00:00:00 2001 From: sjud <64875465+sjud@users.noreply.github.com> Date: Sun, 5 Sep 2021 13:04:00 -0400 Subject: [PATCH] Spelling change intermidiate to intermediate Very importent change. --- src/salsa.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/salsa.md b/src/salsa.md index 9bf93727..a6a6b970 100644 --- a/src/salsa.md +++ b/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