From b154e3bf156cbfca980fc7a671ec5dffbe7200b5 Mon Sep 17 00:00:00 2001 From: bjorn3 Date: Tue, 17 Mar 2020 20:14:48 +0100 Subject: [PATCH] Fix typo (#618) --- src/backend/backend.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/backend.md b/src/backend/backend.md index 9832abb1..0eaa7203 100644 --- a/src/backend/backend.md +++ b/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.