summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorprintfn <Printfn@users.noreply.github.com>2022-04-20 11:57:49 +0200
committerGitHub <noreply@github.com>2022-04-20 18:57:49 +0900
commit4a20975d076bf8aab3004b1d3b3089ae2a3a3f8a (patch)
treea9047bfe38174a057d0131fad11111863b677d69 /src/doc/rustc-dev-guide
parent89579a8037040055ef6d169a16bc2a670033e9df (diff)
downloadrust-4a20975d076bf8aab3004b1d3b3089ae2a3a3f8a.tar.gz
rust-4a20975d076bf8aab3004b1d3b3089ae2a3a3f8a.zip
Fix a small typo (#1343)
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/part-5-intro.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/part-5-intro.md b/src/doc/rustc-dev-guide/src/part-5-intro.md
index 78e6fa2e9bc..4b7c25797c1 100644
--- a/src/doc/rustc-dev-guide/src/part-5-intro.md
+++ b/src/doc/rustc-dev-guide/src/part-5-intro.md
@@ -11,7 +11,7 @@ will finally take the MIR and produce some executable machine code.
 
 [MIR]: ./mir/index.md
 
-> NOTE: This part of a compiler is often called the _backend_ the term is a bit
+> NOTE: This part of a compiler is often called the _backend_. The term is a bit
 > overloaded because in the compiler source, it usually refers to the "codegen
 > backend" (i.e. LLVM or Cranelift). Usually, when you see the word "backend"
 > in this part, we are referring to the "codegen backend".