From 513653910cc1f3dc43c59ca02c13d4ffb474da6a Mon Sep 17 00:00:00 2001 From: albertony <12441419+albertony@users.noreply.github.com> Date: Mon, 12 Aug 2024 16:46:38 +0200 Subject: [PATCH] docs: make the see also section header consistent and listed in toc of command pages --- cmd/gendocs/gendocs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/gendocs/gendocs.go b/cmd/gendocs/gendocs.go index 1003e7691..6b6e85fca 100644 --- a/cmd/gendocs/gendocs.go +++ b/cmd/gendocs/gendocs.go @@ -197,7 +197,7 @@ See the [global flags page](/flags/) for global options not listed here. `) startCut := strings.Index(doc, `### Options inherited from parent commands`) - endCut := strings.Index(doc, `## SEE ALSO`) + endCut := strings.Index(doc, `### SEE ALSO`) if startCut < 0 || endCut < 0 { if name == "rclone.md" { return nil