about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src
diff options
context:
space:
mode:
authorWesley Wiser <wwiser@gmail.com>2023-08-22 15:30:26 -0400
committerGitHub <noreply@github.com>2023-08-22 15:30:26 -0400
commit1097e0957e299613fac4ea58c85aaf8204075a62 (patch)
tree0c8f39dc5ce6519719b8a1c26671b58f66d8bd2b /compiler/rustc_codegen_llvm/src
parent687bffa49375aa00bacc51f5d9adfb84a9453e17 (diff)
downloadrust-1097e0957e299613fac4ea58c85aaf8204075a62.tar.gz
rust-1097e0957e299613fac4ea58c85aaf8204075a62.zip
Fix spelling mistake
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
-rw-r--r--compiler/rustc_codegen_llvm/src/debuginfo/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs b/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs
index d03819b1688..9cdeae2841b 100644
--- a/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs
+++ b/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs
@@ -67,7 +67,7 @@ pub struct CodegenUnitDebugContext<'ll, 'tcx> {
     type_map: metadata::TypeMap<'ll, 'tcx>,
     namespace_map: RefCell<DefIdMap<&'ll DIScope>>,
     recursion_marker_type: OnceCell<&'ll DIType>,
-    /// Maps a varaible (name, scope, kind (argument or local), span) to its debug information.
+    /// Maps a variable (name, scope, kind (argument or local), span) to its debug information.
     variables: RefCell<FxHashMap<(Symbol, &'ll DIScope, VariableKind, Span), &'ll DIVariable>>,
 }