Skip to content

Commit 61a7aeb

Browse files
authored
Merge pull request #48368 from mkouba/docs-fix-vertx-event-bus
Vert.x ref guide: replace the non-existant sendAndForget() with send()
2 parents 5a53a1d + 16e059c commit 61a7aeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/main/asciidoc/vertx-reference.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -704,7 +704,7 @@ The `EventBus` object provides methods to:
704704
[source, java]
705705
----
706706
// Case 1
707-
bus.sendAndForget("greeting", name)
707+
bus.send("greeting", name)
708708
// Case 2
709709
bus.publish("greeting", name)
710710
// Case 3

0 commit comments

Comments
 (0)