[llvm] Use "Mark" rather than "Make" in the objcopy docs for consistency (PR #90080)

via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 25 09:30:44 PDT 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-llvm-binary-utilities

Author: bd1976bris (bd1976bris)

<details>
<summary>Changes</summary>

Docs were recently improved in #<!-- -->82830 - great! Whilst
reviewing those changes I noticed that we are incosistent
sometimes using "Make" and in other places "Mark".

This PR removes the use of the word "Make" in favour of
"Mark". The --help text already used "Mark" everywhere
so no updates to it were requried.

---
Full diff: https://github.com/llvm/llvm-project/pull/90080.diff


1 Files Affected:

- (modified) llvm/docs/CommandGuide/llvm-objcopy.rst (+3-3) 


``````````diff
diff --git a/llvm/docs/CommandGuide/llvm-objcopy.rst b/llvm/docs/CommandGuide/llvm-objcopy.rst
index 57d6280d57c8bd..a62acfc8fdcd80 100644
--- a/llvm/docs/CommandGuide/llvm-objcopy.rst
+++ b/llvm/docs/CommandGuide/llvm-objcopy.rst
@@ -366,12 +366,12 @@ them.
 
 .. option:: --keep-global-symbol <symbol>, -G
 
- Make all symbols local in the output, except for symbols with the name
+ Mark all symbols local in the output, except for symbols with the name
  ``<symbol>``. Can be specified multiple times to ignore multiple symbols.
 
 .. option:: --keep-global-symbols <filename>
 
- Make all symbols local in the output, except for symbols named in the file
+ Mark all symbols local in the output, except for symbols named in the file
  ``<filename>``. In the file, each line represents a single symbol, with leading
  and trailing whitespace ignored, as is anything following a '#'. Can be
  specified multiple times to read names from multiple files.
@@ -395,7 +395,7 @@ them.
 
 .. option:: --localize-hidden
 
- Make all symbols with hidden or internal visibility local in the output.
+ Mark all symbols with hidden or internal visibility local in the output.
 
 .. option:: --localize-symbol <symbol>, -L
 

``````````

</details>


https://github.com/llvm/llvm-project/pull/90080


More information about the llvm-commits mailing list