* [PATCH 0/2] doc: add/remove backticks for inline-verbatim markup
@ 2025-09-02 20:35 kristofferhaugsbakk
2025-09-02 20:35 ` [PATCH 1/2] doc: add missing backtick for inline-verbatim kristofferhaugsbakk
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: kristofferhaugsbakk @ 2025-09-02 20:35 UTC (permalink / raw)
To: git; +Cc: Kristoffer Haugsbakk
From: Kristoffer Haugsbakk <code@khaugsbakk.name>
Fix markup where either a backtick (for inline-verbatim) was missed or
one too many was used.
Ignores the one in `Documentation/config/alias.adoc` because [1] already
covers that one.
[1]: topic km/alias-doc-markup-fix;
https://lore.kernel.org/git/20250901180419.2212086-1-kyle@kemitchell.com/
Kristoffer Haugsbakk (2):
doc: add missing backtick for inline-verbatim
doc: remove extra backtick for inline-verbatim
Documentation/fetch-options.adoc | 2 +-
Documentation/git-fast-import.adoc | 2 +-
Documentation/git-multi-pack-index.adoc | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
base-commit: 2462961280690837670d997bde64bd4ebf8ae66d
--
2.51.0.16.gcd94ab5bf81
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] doc: add missing backtick for inline-verbatim
2025-09-02 20:35 [PATCH 0/2] doc: add/remove backticks for inline-verbatim markup kristofferhaugsbakk
@ 2025-09-02 20:35 ` kristofferhaugsbakk
2025-09-02 20:35 ` [PATCH 2/2] doc: remove extra " kristofferhaugsbakk
2025-09-02 21:54 ` [PATCH 0/2] doc: add/remove backticks for inline-verbatim markup Junio C Hamano
2 siblings, 0 replies; 4+ messages in thread
From: kristofferhaugsbakk @ 2025-09-02 20:35 UTC (permalink / raw)
To: git; +Cc: Kristoffer Haugsbakk
From: Kristoffer Haugsbakk <code@khaugsbakk.name>
Signed-off-by: Kristoffer Haugsbakk <code@khaugsbakk.name>
---
Documentation/fetch-options.adoc | 2 +-
Documentation/git-multi-pack-index.adoc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation/fetch-options.adoc b/Documentation/fetch-options.adoc
index d3ac31f4e2a..ad1e1f49be1 100644
--- a/Documentation/fetch-options.adoc
+++ b/Documentation/fetch-options.adoc
@@ -2,7 +2,7 @@
--no-all::
Fetch all remotes, except for the ones that has the
`remote.<name>.skipFetchAll` configuration variable set.
- This overrides the configuration variable fetch.all`.
+ This overrides the configuration variable `fetch.all`.
-a::
--append::
diff --git a/Documentation/git-multi-pack-index.adoc b/Documentation/git-multi-pack-index.adoc
index e8073bc2723..2f642697e9e 100644
--- a/Documentation/git-multi-pack-index.adoc
+++ b/Documentation/git-multi-pack-index.adoc
@@ -29,7 +29,7 @@ OPTIONS
--no-progress::
Turn progress on/off explicitly. If neither is specified, progress is
shown if standard error is connected to a terminal. Supported by
- sub-commands `write`, `verify`, `expire`, and `repack.
+ sub-commands `write`, `verify`, `expire`, and `repack`.
The following subcommands are available:
--
2.51.0.16.gcd94ab5bf81
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] doc: remove extra backtick for inline-verbatim
2025-09-02 20:35 [PATCH 0/2] doc: add/remove backticks for inline-verbatim markup kristofferhaugsbakk
2025-09-02 20:35 ` [PATCH 1/2] doc: add missing backtick for inline-verbatim kristofferhaugsbakk
@ 2025-09-02 20:35 ` kristofferhaugsbakk
2025-09-02 21:54 ` [PATCH 0/2] doc: add/remove backticks for inline-verbatim markup Junio C Hamano
2 siblings, 0 replies; 4+ messages in thread
From: kristofferhaugsbakk @ 2025-09-02 20:35 UTC (permalink / raw)
To: git; +Cc: Kristoffer Haugsbakk
From: Kristoffer Haugsbakk <code@khaugsbakk.name>
Signed-off-by: Kristoffer Haugsbakk <code@khaugsbakk.name>
---
Documentation/git-fast-import.adoc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/git-fast-import.adoc b/Documentation/git-fast-import.adoc
index 3144ffcdb68..e7d1214d2d1 100644
--- a/Documentation/git-fast-import.adoc
+++ b/Documentation/git-fast-import.adoc
@@ -647,7 +647,7 @@ External data format::
+
Here usually `<dataref>` must be either a mark reference (`:<idnum>`)
set by a prior `blob` command, or a full 40-byte SHA-1 of an
-existing Git blob object. If `<mode>` is `040000`` then
+existing Git blob object. If `<mode>` is `040000` then
`<dataref>` must be the full 40-byte SHA-1 of an existing
Git tree object or a mark reference set with `--import-marks`.
--
2.51.0.16.gcd94ab5bf81
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 0/2] doc: add/remove backticks for inline-verbatim markup
2025-09-02 20:35 [PATCH 0/2] doc: add/remove backticks for inline-verbatim markup kristofferhaugsbakk
2025-09-02 20:35 ` [PATCH 1/2] doc: add missing backtick for inline-verbatim kristofferhaugsbakk
2025-09-02 20:35 ` [PATCH 2/2] doc: remove extra " kristofferhaugsbakk
@ 2025-09-02 21:54 ` Junio C Hamano
2 siblings, 0 replies; 4+ messages in thread
From: Junio C Hamano @ 2025-09-02 21:54 UTC (permalink / raw)
To: kristofferhaugsbakk; +Cc: git, Kristoffer Haugsbakk
kristofferhaugsbakk@fastmail.com writes:
> From: Kristoffer Haugsbakk <code@khaugsbakk.name>
>
> Fix markup where either a backtick (for inline-verbatim) was missed or
> one too many was used.
>
> Ignores the one in `Documentation/config/alias.adoc` because [1] already
> covers that one.
The places these patches address are clearly broken. Thanks for
noticing and fixing them.
Will queue.
Thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-09-02 21:54 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-02 20:35 [PATCH 0/2] doc: add/remove backticks for inline-verbatim markup kristofferhaugsbakk
2025-09-02 20:35 ` [PATCH 1/2] doc: add missing backtick for inline-verbatim kristofferhaugsbakk
2025-09-02 20:35 ` [PATCH 2/2] doc: remove extra " kristofferhaugsbakk
2025-09-02 21:54 ` [PATCH 0/2] doc: add/remove backticks for inline-verbatim markup Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).