Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public interface ControllerWatch<ApiType extends KubernetesObject> {
/**
* Gets the watching resource class.
*
* @return the resouce class
* @return the resource class
*/
Class<ApiType> getResourceClass();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static DefaultControllerBuilder defaultBuilder(SharedInformerFactory fact
* Controller manager builder is for building controller-manager .
*
* @param factory the informer factory
* @return the controller mananger builder
* @return the controller manager builder
*/
public static ControllerManagerBuilder controllerManagerBuilder(SharedInformerFactory factory) {
return new ControllerManagerBuilder(factory);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
import java.util.ArrayList;
import java.util.List;

/** The type Controller mananger builder. */
/** The type Controller manager builder. */
public class ControllerManagerBuilder {

private SharedInformerFactory informerFactory;

/** Instantiates a new Controller mananger builder. */
/** Instantiates a new Controller manager builder. */
ControllerManagerBuilder(SharedInformerFactory factory) {
this.informerFactory = factory;
this.controllerList = new ArrayList<>();
Expand All @@ -32,10 +32,10 @@ public class ControllerManagerBuilder {
private List<Controller> controllerList;

/**
* Add controller controller mananger builder.
* Add controller controller manager builder.
*
* @param controller the controller
* @return the controller mananger builder
* @return the controller manager builder
*/
public ControllerManagerBuilder addController(Controller controller) {
this.controllerList.add(controller);
Expand Down