From c13daeb036273d3fd0544c3cc58592f2a86d1631 Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Mon, 1 Apr 2019 13:41:41 -0400 Subject: [PATCH] Fix typo --- src/librustc_codegen_llvm/debuginfo/type_names.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc_codegen_llvm/debuginfo/type_names.rs b/src/librustc_codegen_llvm/debuginfo/type_names.rs index 05c6c9877acd7..eff7cd1bc8a48 100644 --- a/src/librustc_codegen_llvm/debuginfo/type_names.rs +++ b/src/librustc_codegen_llvm/debuginfo/type_names.rs @@ -189,7 +189,7 @@ pub fn push_debuginfo_type_name<'a, 'tcx>(cx: &CodegenCx<'a, 'tcx>, // (e.g. MyType u8, fn() -> u8> // // We only care about avoiding recursing - // directly back to the type we're currentlu + // directly back to the type we're currently // processing visited.remove(t); },