about summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa/src/back
diff options
context:
space:
mode:
authorKai Luo <lkail@cn.ibm.com>2024-03-05 15:42:31 +0800
committerKai Luo <lkail@cn.ibm.com>2024-03-05 15:42:31 +0800
commitb1c390989fc8b74aa36f445cd66316a8ca96455d (patch)
tree1101ac5e13894da4be13c7db4273908c03a30297 /compiler/rustc_codegen_ssa/src/back
parente74e6e767d4b5cc1f033cee5b5ef4704dd8fee31 (diff)
downloadrust-b1c390989fc8b74aa36f445cd66316a8ca96455d.tar.gz
rust-b1c390989fc8b74aa36f445cd66316a8ca96455d.zip
Adjust wording
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/back')
-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 => {}