Skip to content

Commit 96e6824

Browse files
authored
[docs] Add missing semicolon in schedulers.adoc (#3951)
1 parent d924e84 commit 96e6824

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/modules/ROOT/pages/coreFeatures/schedulers.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public static void main(String[] args) throws InterruptedException {
2222
.subscribe(v -> //<2>
2323
System.out.println(v + Thread.currentThread().getName()) //<3>
2424
)
25-
)
25+
);
2626
t.start();
2727
t.join();
2828

0 commit comments

Comments
 (0)