Polish contribution

See gh-37305
This commit is contained in:
Sam Brannen
2026-09-19 19:39:48 +02:00
parent b5454b1a69
commit 48b59dfaec
@@ -468,7 +468,7 @@ seconds:
----
@Scheduled(initialDelay = 0, fixedRate = 5000)
public Mono<Void> reactiveSomething() {
AtomicInteger countdown = new AtomicInteger(2);
AtomicInteger countDown = new AtomicInteger(2);
return Mono.defer(() -> {
if (countDown.get() == 0 || countDown.decrementAndGet() == 0) {