diff --git a/internal/mocks/simple_config.go b/internal/mocks/simple_config.go index 199e9cba..29d35827 100644 --- a/internal/mocks/simple_config.go +++ b/internal/mocks/simple_config.go @@ -22,7 +22,7 @@ type SimpleConfig struct { SearchProjectWithClientsName bool } -// IsSearchProjectWithClientName defines if the project name for ID should +// IsSearchProjectWithClientsName defines if the project name for ID should // include the client's name func (s *SimpleConfig) IsSearchProjectWithClientsName() bool { return s.SearchProjectWithClientsName diff --git a/pkg/cmdutil/config.go b/pkg/cmdutil/config.go index e11cd305..309fa143 100644 --- a/pkg/cmdutil/config.go +++ b/pkg/cmdutil/config.go @@ -67,7 +67,7 @@ type Config interface { // InteractivePageSize sets how many items are shown when prompting // projects InteractivePageSize() int - // IsSearchProjectWithClientName defines if the project name for ID should + // IsSearchProjectWithClientsName defines if the project name for ID should // include the client's name IsSearchProjectWithClientsName() bool @@ -85,7 +85,7 @@ type Config interface { type config struct{} -// IsSearchProjectWithClientName defines if the project name for ID should +// IsSearchProjectWithClientsName defines if the project name for ID should // include the client's name func (c *config) IsSearchProjectWithClientsName() bool { return c.GetBool(CONF_SEARCH_PROJECTS_WITH_CLIENT_NAME)