[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:14 PDT 2024


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

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.

>From 8d5e16e055c3ba5f294fbd5039f8b973456b8a43 Mon Sep 17 00:00:00 2001
From: Ben Dunbobbin <Ben.Dunbobbin at sony.com>
Date: Thu, 25 Apr 2024 17:24:29 +0100
Subject: [PATCH] Use mark consistently everywhere

---
 llvm/docs/CommandGuide/llvm-objcopy.rst | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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
 



More information about the llvm-commits mailing list