diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/gen_manpage.go | 4 | ||||
-rw-r--r-- | doc/man/git-bug-ls-id.1 | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/doc/gen_manpage.go b/doc/gen_manpage.go index 0c7a501a..eef0ff66 100644 --- a/doc/gen_manpage.go +++ b/doc/gen_manpage.go @@ -8,6 +8,7 @@ import ( "os" "path" "path/filepath" + "time" "github.com/MichaelMure/git-bug/commands" "github.com/spf13/cobra/doc" @@ -17,9 +18,12 @@ func main() { cwd, _ := os.Getwd() dir := path.Join(cwd, "doc", "man") + date := time.Date(2019, 4, 1, 12, 0, 0, 0, time.UTC) + header := &doc.GenManHeader{ Title: "GIT-BUG", Section: "1", + Date: &date, Source: "Generated from git-bug's source code", } diff --git a/doc/man/git-bug-ls-id.1 b/doc/man/git-bug-ls-id.1 index 5b112afd..5962f1b9 100644 --- a/doc/man/git-bug-ls-id.1 +++ b/doc/man/git-bug-ls-id.1 @@ -5,7 +5,7 @@ .SH NAME .PP -git\-bug\-ls\-id \- List Bug Id +git\-bug\-ls\-id \- List bug identifiers. .SH SYNOPSIS @@ -15,7 +15,7 @@ git\-bug\-ls\-id \- List Bug Id .SH DESCRIPTION .PP -List Bug Id +List bug identifiers. .SH OPTIONS |