Skip to content

Commit bd3ccbe

Browse files
authored
fix: Update examples in README to have consistent class names (#723)
Signed-off-by: Katherine Stanley <[email protected]>
1 parent a3b1611 commit bd3ccbe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,11 +142,11 @@ The Controller implements the business logic and describes all the classes neede
142142
```java
143143

144144
@ControllerConfiguration
145-
public class WebServerController implements Reconciler<WebServer> {
145+
public class WebPageReconciler implements Reconciler<WebPage> {
146146

147147
// Return the changed resource, so it gets updated. See javadoc for details.
148148
@Override
149-
public UpdateControl<CustomService> reconcile(CustomService resource,
149+
public UpdateControl<WebPage> reconcile(WebPage resource,
150150
Context context) {
151151
// ... your logic ...
152152
return UpdateControl.updateStatus(resource);

0 commit comments

Comments
 (0)