You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2021/12/15 18:50:52 UTC

[camel-k-runtime] branch release-1.10.x updated: fix(docs): grammar correction in JavaScript docs

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch release-1.10.x
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git


The following commit(s) were added to refs/heads/release-1.10.x by this push:
     new d534609  fix(docs): grammar correction in JavaScript docs
d534609 is described below

commit d534609c39e7a0b441b56c02e538250c99b342ed
Author: Basit Mustafa <ba...@gmail.com>
AuthorDate: Wed Dec 15 11:47:22 2021 -0700

    fix(docs): grammar correction in JavaScript docs
---
 docs/modules/languages/pages/javascript.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/modules/languages/pages/javascript.adoc b/docs/modules/languages/pages/javascript.adoc
index e94f33e..fc7b630 100644
--- a/docs/modules/languages/pages/javascript.adoc
+++ b/docs/modules/languages/pages/javascript.adoc
@@ -25,7 +25,7 @@ To run it, you need just to execute:
 kamel run hello.js
 ```
 
-For JavaScript integrations, Camel K does not yet provide an enhanced DSL, but you can access to some global bounded objects such as a writable registry and the camel context so to set the property _exchangeFormatter_ of the _LogComponent_ as done in previous example, you can do something like:
+For JavaScript integrations, Camel K does not yet provide an enhanced DSL, but you can access some global bounded objects such as a writable registry and the camel context so to set the property _exchangeFormatter_ of the _LogComponent_ as done in previous example, you can do something like:
 
 [source,js]
 ----