Message ID | 72bb58e5f3b8a5a622394c5ff40426156e122580.1708720255.git.me@ttaylorr.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 97d1f233c6e06dac978b419506a2bf1038f71eaf |
Headers | show |
Series | Documentation/config/pack.txt: fix broken AsciiDoc | expand |
Taylor Blau <me@ttaylorr.com> writes: > diff --git a/Documentation/config/pack.txt b/Documentation/config/pack.txt > index 9c630863e6..da527377fa 100644 > --- a/Documentation/config/pack.txt > +++ b/Documentation/config/pack.txt > @@ -34,11 +34,10 @@ pack.allowPackReuse:: > reachability bitmap is available, pack-objects will try to send > parts of all packs in the MIDX. > + > - If only a single pack bitmap is available, and > - `pack.allowPackReuse` is set to "multi", reuse parts of just the > - bitmapped packfile. This can reduce memory and CPU usage to > - serve fetches, but might result in sending a slightly larger > - pack. Defaults to true. > +If only a single pack bitmap is available, and `pack.allowPackReuse` > +is set to "multi", reuse parts of just the bitmapped packfile. This > +can reduce memory and CPU usage to serve fetches, but might result in > +sending a slightly larger pack. Defaults to true. Thanks.
diff --git a/Documentation/config/pack.txt b/Documentation/config/pack.txt index 9c630863e6..da527377fa 100644 --- a/Documentation/config/pack.txt +++ b/Documentation/config/pack.txt @@ -34,11 +34,10 @@ pack.allowPackReuse:: reachability bitmap is available, pack-objects will try to send parts of all packs in the MIDX. + - If only a single pack bitmap is available, and - `pack.allowPackReuse` is set to "multi", reuse parts of just the - bitmapped packfile. This can reduce memory and CPU usage to - serve fetches, but might result in sending a slightly larger - pack. Defaults to true. +If only a single pack bitmap is available, and `pack.allowPackReuse` +is set to "multi", reuse parts of just the bitmapped packfile. This +can reduce memory and CPU usage to serve fetches, but might result in +sending a slightly larger pack. Defaults to true. pack.island:: An extended regular expression configuring a set of delta
In af626ac0e0 (pack-bitmap: enable reuse from all bitmapped packs, 2023-12-14), the documentation for `pack.allowPackReuse` was amended to include its effect when set to "multi". This split the documentation into two paragraphs, but did not de-dent the second paragraph on the right-hand side of a line-continuation marker. This causes the rendered documentation to appear oddly, where the second paragraph is treated as a <pre> block when rendered as HTML. Fix this by correctly removing the indentation on the second paragraph. Signed-off-by: Taylor Blau <me@ttaylorr.com> --- Documentation/config/pack.txt | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-)