about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAaron Hill <aa1ronham@gmail.com>2019-04-01 13:41:41 -0400
committerGitHub <noreply@github.com>2019-04-01 13:41:41 -0400
commitc13daeb036273d3fd0544c3cc58592f2a86d1631 (patch)
tree5ea238a8a843d522ac9f37258e071b366ca5d2bd
parentd2584e3b6aa8ed60f291d71a86f849a7f667c2fd (diff)
downloadrust-c13daeb036273d3fd0544c3cc58592f2a86d1631.tar.gz
rust-c13daeb036273d3fd0544c3cc58592f2a86d1631.zip
Fix typo
-rw-r--r--src/librustc_codegen_llvm/debuginfo/type_names.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_codegen_llvm/debuginfo/type_names.rs b/src/librustc_codegen_llvm/debuginfo/type_names.rs
index 05c6c9877ac..eff7cd1bc8a 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<fn() -> 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);
         },