From 44838ded6774ace1474ce1f414f683acd8c4c2bb Mon Sep 17 00:00:00 2001 From: ohzqq <93457509+ohzqq@users.noreply.github.com> Date: Mon, 25 Apr 2022 10:33:49 -0400 Subject: [PATCH] Comment out comment Forgot to comment out that line! --- parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser.go b/parser.go index 5465ad4..08a23bf 100644 --- a/parser.go +++ b/parser.go @@ -26,7 +26,7 @@ type Parser struct { subcommandContext *Subcommand // points to the most specific subcommand being used } -TrailingSubcommand returns the last and most specific subcommand invoked. +// TrailingSubcommand returns the last and most specific subcommand invoked. func (p *Parser) TrailingSubcommand() *Subcommand { return p.subcommandContext }