From 17083878dccea0c76f30ed158861bb96c85c87b7 Mon Sep 17 00:00:00 2001 From: Steve Moyer Date: Fri, 6 Feb 2026 11:34:51 -0500 Subject: [PATCH] docs: fix Go doc comment --- commands/execenv/loading.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/execenv/loading.go b/commands/execenv/loading.go index 96ff073da59ac2d9fcc5be70d9f338a9de531733..82b8904b5871ffac2c6409c66b514e7ee02d5f64 100644 --- a/commands/execenv/loading.go +++ b/commands/execenv/loading.go @@ -15,7 +15,7 @@ import ( "github.com/git-bug/git-bug/util/interrupt" ) -// LoadRepo is a pre-run function that load the repository for use in a command +// LoadRepo is a pre-run function that loads the repository for use in a command. func LoadRepo(env *Env) func(*cobra.Command, []string) error { return func(cmd *cobra.Command, args []string) error { repoPath, err := getRepoPath(env)