Patrick Steinhardt <ps@xxxxxx> writes: > With 974cdca345c (doc: introduce a synopsis typesetting, 2024-09-24) we > have introduced a new synopsis type that simplifies the rules for > typesetting a command's synopsis. Convert the git-reflog(1) > documentation to use it. Good. > > Signed-off-by: Patrick Steinhardt <ps@xxxxxx> > --- > Documentation/git-reflog.adoc | 14 +++++++------- > 1 file changed, 7 insertions(+), 7 deletions(-) > > diff --git a/Documentation/git-reflog.adoc b/Documentation/git-reflog.adoc > index 412f06b8fec..707a9b39edb 100644 > --- a/Documentation/git-reflog.adoc > +++ b/Documentation/git-reflog.adoc > @@ -8,16 +8,16 @@ git-reflog - Manage reflog information > > SYNOPSIS > -------- > -[verse] > -'git reflog' [show] [<log-options>] [<ref>] > -'git reflog list' > -'git reflog expire' [--expire=<time>] [--expire-unreachable=<time>] > +[synopsis] > +git reflog [show] [<log-options>] [<ref>] > +git reflog list > +git reflog expire [--expire=<time>] [--expire-unreachable=<time>] > [--rewrite] [--updateref] [--stale-fix] > [--dry-run | -n] [--verbose] [--all [--single-worktree] | <refs>...] > -'git reflog delete' [--rewrite] [--updateref] > +git reflog delete [--rewrite] [--updateref] > [--dry-run | -n] [--verbose] <ref>@{<specifier>}... > -'git reflog drop' [--all [--single-worktree] | <refs>...] > -'git reflog exists' <ref> > +git reflog drop [--all [--single-worktree] | <refs>...] > +git reflog exists <ref> > > DESCRIPTION > -----------