From ece25c77895467d5300c2d690e3e6ff71ca85c5d Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Thu, 11 May 2023 21:14:22 -0400 Subject: [PATCH] fix: correct copyright in man --- man/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/command.go b/man/command.go index f563af9..28280ea 100644 --- a/man/command.go +++ b/man/command.go @@ -16,7 +16,7 @@ func (m Man) BeforeApply(ctx *kong.Context) error { // Set the correct man pages description without color escape sequences. ctx.Model.Help = "A tool for glamorous shell scripts." man := mangokong.NewManPage(1, ctx.Model) - man = man.WithSection("Copyright", "(C) 2021-2023 Charmbracelet, Inc.\n"+ + man = man.WithSection("Copyright", "(C) 2022-2023 Charmbracelet, Inc.\n"+ "Released under MIT license.") fmt.Fprint(ctx.Stdout, man.Build(roff.NewDocument())) ctx.Exit(0)