diff --git a/commands/command_lock.go b/commands/command_lock.go index 818841cb0f..8028aede95 100644 --- a/commands/command_lock.go +++ b/commands/command_lock.go @@ -94,7 +94,7 @@ func computeLockData() (*lockData, error) { }, nil } -// lockPaths relativizes the given filepath such that it is relative to the root +// lockPath relativizes the given filepath such that it is relative to the root // path of the repository it is contained within, taking into account the // working directory of the caller. // diff --git a/commands/command_uninstall.go b/commands/command_uninstall.go index c8ef11d242..f40d28e8e8 100644 --- a/commands/command_uninstall.go +++ b/commands/command_uninstall.go @@ -6,7 +6,7 @@ import ( "github.com/spf13/cobra" ) -// uninstallCmd removes any configuration and hooks set by Git LFS. +// uninstallCommand removes any configuration and hooks set by Git LFS. func uninstallCommand(cmd *cobra.Command, args []string) { if err := cmdInstallOptions().Uninstall(); err != nil { Print(tr.Tr.Get("warning: %s", err.Error())) @@ -23,7 +23,7 @@ func uninstallCommand(cmd *cobra.Command, args []string) { } } -// uninstallHooksCmd removes any hooks created by Git LFS. +// uninstallHooksCommand removes any hooks created by Git LFS. func uninstallHooksCommand(cmd *cobra.Command, args []string) { if err := uninstallHooks(); err != nil { Error(err.Error())