about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorWho? Me?! <mark-i-m@users.noreply.github.com>2020-07-24 18:13:25 -0500
committerWho? Me?! <mark-i-m@users.noreply.github.com>2020-08-02 19:44:04 -0500
commite05e9b623bef3c170f744078b8be0a456c89aae5 (patch)
tree2ff0b9fb269a2bce22b54928add4bb45373c8e3a /src/doc/rustc-dev-guide
parentb6554ff04798cc57745560f03a10cefc91a32a6c (diff)
downloadrust-e05e9b623bef3c170f744078b8be0a456c89aae5.tar.gz
rust-e05e9b623bef3c170f744078b8be0a456c89aae5.zip
Typo
Co-authored-by: Joshua Nelson <joshua@yottadb.com>
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/compiler-src.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/compiler-src.md b/src/doc/rustc-dev-guide/src/compiler-src.md
index a9d708f1a88..a976701aa72 100644
--- a/src/doc/rustc-dev-guide/src/compiler-src.md
+++ b/src/doc/rustc-dev-guide/src/compiler-src.md
@@ -106,7 +106,7 @@ parallel compilation.
 However, since the query system is defined in [`rustc_middle`], nearly all
 subsequent parts of the compiler depend on this crate. It is a really large
 crate, leading to long compile times. Some efforts have been made to move stuff
-out of it with limited success. Another unfortunate sideffect is that sometimes
+out of it with limited success. Another unfortunate side effect is that sometimes
 related functionality gets scattered across different crates. For example,
 linting functionality is scattered across earlier parts of the crate,
 [`rustc_lint`], [`rustc_middle`], and other places.