SimpleRetryPolicy Javadoc fix

This commit is contained in:
Grzegorz Demecki
2022-06-10 21:43:43 +02:00
committed by GitHub
parent c02e546ea3
commit fef3cfe06d

View File

@@ -43,7 +43,7 @@ import org.springframework.util.ClassUtils;
* that is actually performed by:
*
* <pre>
* RetryTemplate.newBuilder()
* RetryTemplate.builder()
* .maxAttempts(3)
* .retryOn(Exception.class)
* .build();