From 48b59dfaec11e4ea63c4bfc4a015ee3929de25db Mon Sep 17 00:00:00 2001 From: Sam Brannen <104798+sbrannen@users.noreply.github.com> Date: Sat, 19 Sep 2026 19:39:48 +0200 Subject: [PATCH] Polish contribution See gh-37305 --- framework-docs/modules/ROOT/pages/integration/scheduling.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {