diff --git a/framework-docs/modules/ROOT/pages/integration/scheduling.adoc b/framework-docs/modules/ROOT/pages/integration/scheduling.adoc index 394cf80f388..a221098ca59 100644 --- a/framework-docs/modules/ROOT/pages/integration/scheduling.adoc +++ b/framework-docs/modules/ROOT/pages/integration/scheduling.adoc @@ -468,7 +468,7 @@ seconds: ---- @Scheduled(initialDelay = 0, fixedRate = 5000) public Mono reactiveSomething() { - AtomicInteger countdown = new AtomicInteger(2); + AtomicInteger countDown = new AtomicInteger(2); return Mono.defer(() -> { if (countDown.get() == 0 || countDown.decrementAndGet() == 0) {