Skip to content

Commit b704f44

Browse files
authored
Merge pull request #1470 from porridge/patch-1
📖 Fix doc strings for Complete() and Build().
2 parents 11dfabf + 2d885a9 commit b704f44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/builder/controller.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,13 +164,13 @@ func (blder *Builder) Named(name string) *Builder {
164164
return blder
165165
}
166166

167-
// Complete builds the Application ControllerManagedBy.
167+
// Complete builds the Application Controller.
168168
func (blder *Builder) Complete(r reconcile.Reconciler) error {
169169
_, err := blder.Build(r)
170170
return err
171171
}
172172

173-
// Build builds the Application ControllerManagedBy and returns the Controller it created.
173+
// Build builds the Application Controller and returns the Controller it created.
174174
func (blder *Builder) Build(r reconcile.Reconciler) (controller.Controller, error) {
175175
if r == nil {
176176
return nil, fmt.Errorf("must provide a non-nil Reconciler")

0 commit comments

Comments
 (0)