diff mbox series

[1/6] git-http-push.txt,git-send-pack.txt: avoid single quote

Message ID 04e2d9de24db1e69803c495710f1f0908a12c91a.1620928059.git.martin.agren@gmail.com (mailing list archive)
State New, archived
Headers show
Series AsciiDoc vs Asciidoctor, once again | expand

Commit Message

Martin Ågren May 13, 2021, 6:17 p.m. UTC
AsciiDoc matches up the very first backtick with the single quote
towards the end, and renders that first backtick literally:

    `--force, ... other peoples' commits

Rewrite the "other peoples' commits" construction to drop the single
quote mark.

Signed-off-by: Martin Ågren <martin.agren@gmail.com>
---
 Documentation/git-http-push.txt | 2 +-
 Documentation/git-send-pack.txt | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/Documentation/git-http-push.txt b/Documentation/git-http-push.txt
index ea03a4eeb0..cbb7d2de6d 100644
--- a/Documentation/git-http-push.txt
+++ b/Documentation/git-http-push.txt
@@ -85,7 +85,7 @@  Without `--force`, the <src> ref is stored at the remote only if
 <dst> does not exist, or <dst> is a proper subset (i.e. an
 ancestor) of <src>.  This check, known as "fast-forward check",
 is performed in order to avoid accidentally overwriting the
-remote ref and lose other peoples' commits from there.
+remote ref and losing commits of other people from there.
 
 With `--force`, the fast-forward check is disabled for all refs.
 
diff --git a/Documentation/git-send-pack.txt b/Documentation/git-send-pack.txt
index 44fd146b91..d8c8acb96e 100644
--- a/Documentation/git-send-pack.txt
+++ b/Documentation/git-send-pack.txt
@@ -144,7 +144,7 @@  Without `--force`, the <src> ref is stored at the remote only if
 <dst> does not exist, or <dst> is a proper subset (i.e. an
 ancestor) of <src>.  This check, known as "fast-forward check",
 is performed in order to avoid accidentally overwriting the
-remote ref and lose other peoples' commits from there.
+remote ref and losing commits of other people from there.
 
 With `--force`, the fast-forward check is disabled for all refs.