about summary refs log tree commit diff
path: root/compiler/rustc_llvm/llvm-wrapper/ArchiveWrapper.cpp
diff options
context:
space:
mode:
authorDan <hello@danielh.cc>2024-04-03 19:03:12 -0400
committerDan <hello@danielh.cc>2024-04-03 19:03:12 -0400
commit19758714cadc29fcd2d0e411f3088669d0dbc819 (patch)
tree54f1e737cb54a991a56b037bdc9b6f414f8efa1e /compiler/rustc_llvm/llvm-wrapper/ArchiveWrapper.cpp
parent6ec953c5ea63487a2e86b5b81555799bc438f741 (diff)
downloadrust-19758714cadc29fcd2d0e411f3088669d0dbc819.tar.gz
rust-19758714cadc29fcd2d0e411f3088669d0dbc819.zip
update messages
Diffstat (limited to 'compiler/rustc_llvm/llvm-wrapper/ArchiveWrapper.cpp')
-rw-r--r--compiler/rustc_llvm/llvm-wrapper/ArchiveWrapper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_llvm/llvm-wrapper/ArchiveWrapper.cpp b/compiler/rustc_llvm/llvm-wrapper/ArchiveWrapper.cpp
index 40723ff9f5e..64e6c18092f 100644
--- a/compiler/rustc_llvm/llvm-wrapper/ArchiveWrapper.cpp
+++ b/compiler/rustc_llvm/llvm-wrapper/ArchiveWrapper.cpp
@@ -147,7 +147,7 @@ LLVMRustArchiveChildName(LLVMRustArchiveChildConstRef Child, size_t *Size) {
   Expected<StringRef> NameOrErr = Child->getName();
   if (!NameOrErr) {
     // rustc_codegen_llvm currently doesn't use this error string, but it might be
-    // useful in the future, and in the mean time this tells LLVM that the
+    // useful in the future, and in the meantime this tells LLVM that the
     // error was not ignored and that it shouldn't abort the process.
     LLVMRustSetLastError(toString(NameOrErr.takeError()).c_str());
     return nullptr;