about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorbjorn3 <bjorn3@users.noreply.github.com>2020-03-17 20:14:48 +0100
committerGitHub <noreply@github.com>2020-03-17 21:14:48 +0200
commite9c48f2bb9f2ca30878f7da2dd0a18edd121ee19 (patch)
treeff6018cd46a2fb56b40596488ee92d7261841e0f /src/doc/rustc-dev-guide
parent299f11c2c0c4d58c8876367cecaeaf9621f8e190 (diff)
downloadrust-e9c48f2bb9f2ca30878f7da2dd0a18edd121ee19.tar.gz
rust-e9c48f2bb9f2ca30878f7da2dd0a18edd121ee19.zip
Fix typo (#618)
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/backend/backend.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/backend/backend.md b/src/doc/rustc-dev-guide/src/backend/backend.md
index 9832abb1d77..0eaa720361e 100644
--- a/src/doc/rustc-dev-guide/src/backend/backend.md
+++ b/src/doc/rustc-dev-guide/src/backend/backend.md
@@ -38,7 +38,7 @@ The code for codegen is actually a bit complex due to a few factors:
 - Codegen happens asynchronously in another thread for performance.
 - The actual codegen is done by a third-party library (either LLVM or Cranelift).
 
-Generally, the [`rustc_codegen_ssa`][ssa] crate contains backend-agnastic code
+Generally, the [`rustc_codegen_ssa`][ssa] crate contains backend-agnostic code
 (i.e. independent of LLVM or Cranelift), while the [`rustc_codegen_llvm`][llvm]
 crate contains code specific to LLVM codegen.