about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--compiler/rustc_codegen_ssa/src/back/link.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/back/link.rs b/compiler/rustc_codegen_ssa/src/back/link.rs
index b52e6242d99..a8d6963294d 100644
--- a/compiler/rustc_codegen_ssa/src/back/link.rs
+++ b/compiler/rustc_codegen_ssa/src/back/link.rs
@@ -1088,7 +1088,7 @@ fn link_natively<'a>(
                 strip_symbols_with_external_utility(sess, stripcmd, out_filename, Some("-l"))
             }
             Strip::Symbols => {
-                // Must be noted this option removes symbol __aix_rust_metadata and thus removes .info section which contains metadata.
+                // Must be noted this option might remove symbol __aix_rust_metadata and thus removes .info section which contains metadata.
                 strip_symbols_with_external_utility(sess, stripcmd, out_filename, Some("-r"))
             }
             Strip::None => {}