This is an automated email from the ASF dual-hosted git repository. bvahdat pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 3f7068e4773 fix typo in reactive-streams-component.adoc 3f7068e4773 is described below commit 3f7068e4773215bd78173bfe73305574ff264a77 Author: Babak Vahdat <bvah...@apache.org> AuthorDate: Sat Dec 31 17:29:42 2022 +0100 fix typo in reactive-streams-component.adoc --- .../src/main/docs/reactive-streams-component.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-reactive-streams/src/main/docs/reactive-streams-component.adoc b/components/camel-reactive-streams/src/main/docs/reactive-streams-component.adoc index 19a40200102..5c71af3079b 100644 --- a/components/camel-reactive-streams/src/main/docs/reactive-streams-component.adoc +++ b/components/camel-reactive-streams/src/main/docs/reactive-streams-component.adoc @@ -108,7 +108,7 @@ Here is an example of how to use it with https://github.com/ReactiveX/RxJava[RxJ [source,java] --------------------------------------------------------- -Flowable.fromPublisher(integers) +Flowable.fromPublisher(numbers) .doOnNext(System.out::println) .subscribe(); ---------------------------------------------------------