diff --git a/2.2.x/reference/html/index.html b/2.2.x/reference/html/index.html
index 1f1e1bca..7bb83132 100644
--- a/2.2.x/reference/html/index.html
+++ b/2.2.x/reference/html/index.html
@@ -1638,7 +1638,7 @@ We suggest passing a DiscoveryClientServiceInstanceListSupplier del
@Bean
public ServiceInstanceListSupplier discoveryClientServiceInstanceListSupplier(
ConfigurableApplicationContext context) {
- return ServiceInstanceListSuppliers.builder()
+ return ServiceInstanceListSupplier.builder()
.withDiscoveryClient()
.withHealthChecks()
.withCaching()
@@ -1651,7 +1651,7 @@ We suggest passing a DiscoveryClientServiceInstanceListSupplier del
In order to make working on your own LoadBalancer configuration easier, we have added some utility methods in ServiceInstanceListSuppliers class.
In order to make working on your own LoadBalancer configuration easier, we have added a builder() method to the ServiceInstanceListSupplier class.
DiscoveryClientServiceInstanceListSupplier del
@Bean
public ServiceInstanceListSupplier discoveryClientServiceInstanceListSupplier(
ConfigurableApplicationContext context) {
- return ServiceInstanceListSuppliers.builder()
+ return ServiceInstanceListSupplier.builder()
.withDiscoveryClient()
.withHealthChecks()
.withCaching()
@@ -1651,7 +1651,7 @@ We suggest passing a DiscoveryClientServiceInstanceListSupplier del
In order to make working on your own LoadBalancer configuration easier, we have added some utility methods in ServiceInstanceListSuppliers class.
In order to make working on your own LoadBalancer configuration easier, we have added a builder() method to the ServiceInstanceListSupplier class.