From 96e6824fc9ff96fd493385a36207ae8a4f500795 Mon Sep 17 00:00:00 2001 From: Nana Jerde <46993277+ShuiMu-peng@users.noreply.github.com> Date: Thu, 12 Dec 2024 21:31:14 +0800 Subject: [PATCH] [docs] Add missing semicolon in schedulers.adoc (#3951) --- docs/modules/ROOT/pages/coreFeatures/schedulers.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/coreFeatures/schedulers.adoc b/docs/modules/ROOT/pages/coreFeatures/schedulers.adoc index f279ec13b1..678775aaaf 100644 --- a/docs/modules/ROOT/pages/coreFeatures/schedulers.adoc +++ b/docs/modules/ROOT/pages/coreFeatures/schedulers.adoc @@ -22,7 +22,7 @@ public static void main(String[] args) throws InterruptedException { .subscribe(v -> //<2> System.out.println(v + Thread.currentThread().getName()) //<3> ) - ) + ); t.start(); t.join();