Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📖 : fix function name in comments #3441

Merged
merged 1 commit into from
Jun 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkg/config/v3/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,12 @@ func (c *cfg) SetProjectName(name string) error {
return nil
}

// GetLayout implements config.Config
// GetPluginChain implements config.Config
func (c cfg) GetPluginChain() []string {
return c.PluginChain
}

// SetLayout implements config.Config
// SetPluginChain implements config.Config
func (c *cfg) SetPluginChain(pluginChain []string) error {
c.PluginChain = pluginChain
return nil
Expand Down
2 changes: 1 addition & 1 deletion pkg/plugins/golang/deploy-image/v1alpha1/scaffolds/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ type apiScaffolder struct {
fs machinery.Filesystem
}

// NewAPIScaffolder returns a new Scaffolder for declarative
// NewDeployImageScaffolder returns a new Scaffolder for declarative
// nolint: lll
func NewDeployImageScaffolder(config config.Config, res resource.Resource, image,
command, port, runAsUser string,
Expand Down