You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2020/09/03 11:00:14 UTC

[camel-quarkus] branch master updated (8159851 -> a5ee3fa)

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

ppalaga pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.


    from 8159851  Align dependencies with latest camel & quarkus releases
     new 8554bd6  Update first-steps.adoc
     new a5ee3fa  Update native-mode.adoc

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docs/modules/ROOT/pages/user-guide/first-steps.adoc | 6 +++---
 docs/modules/ROOT/pages/user-guide/native-mode.adoc | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)


[camel-quarkus] 02/02: Update native-mode.adoc

Posted by pp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ppalaga pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit a5ee3fa131ce84813c443cf9ada376c53c4fb196
Author: PoojaChandak <po...@gmail.com>
AuthorDate: Tue Sep 1 16:19:41 2020 +0530

    Update native-mode.adoc
    
    Grammatical corrections
---
 docs/modules/ROOT/pages/user-guide/native-mode.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/modules/ROOT/pages/user-guide/native-mode.adoc b/docs/modules/ROOT/pages/user-guide/native-mode.adoc
index af71298..8b7bf5d 100644
--- a/docs/modules/ROOT/pages/user-guide/native-mode.adoc
+++ b/docs/modules/ROOT/pages/user-guide/native-mode.adoc
@@ -44,7 +44,7 @@ At the end of the day, resources matching `include-patterns` are marked for incl
 [[using-onexception-clause-in-native-mode]]
 == Using onException clause in native mode
 
-When using https://camel.apache.org/manual/latest/exception-clause.html[camel onException handling] in native mode, it is the application developer responsibility to register exception classes for reflection.
+When using https://camel.apache.org/manual/latest/exception-clause.html[camel onException handling] in native mode, it is the application developer's responsibility to register exception classes for reflection.
 
 For instance, having a camel context with onException handling as below:
 
@@ -65,7 +65,7 @@ registered for reflection at compile time.
 In many cases, application developers do not need to care because Quarkus extensions are able to detect the classes that
 require the reflection and register them automatically.
 
-However, in some situations Quarkus extensions may miss some classes and it is up to the application developer to
+However, in some situations, Quarkus extensions may miss some classes and it is up to the application developer to
 register them. There are two ways to do that:
 
 1. The `https://quarkus.io/guides/writing-native-applications-tips#alternative-with-registerforreflection[@io.quarkus.runtime.annotations.RegisterForReflection]`


[camel-quarkus] 01/02: Update first-steps.adoc

Posted by pp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ppalaga pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 8554bd6777d1b3b6c4555347359dbd6cf9f2e7d5
Author: PoojaChandak <po...@gmail.com>
AuthorDate: Tue Sep 1 16:17:40 2020 +0530

    Update first-steps.adoc
    
    Typo correction
---
 docs/modules/ROOT/pages/user-guide/first-steps.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/modules/ROOT/pages/user-guide/first-steps.adoc b/docs/modules/ROOT/pages/user-guide/first-steps.adoc
index 03f2528..f7214bb 100644
--- a/docs/modules/ROOT/pages/user-guide/first-steps.adoc
+++ b/docs/modules/ROOT/pages/user-guide/first-steps.adoc
@@ -2,7 +2,7 @@
 :page-aliases: first-steps.adoc
 
 We recommend you to choose an example from our https://github.com/apache/camel-quarkus/tree/master/examples[source tree]
-as a base for your real world project.
+as a base for your real-world project.
 
 == Prerequisites
 
@@ -13,12 +13,12 @@ as a base for your real world project.
 * GraalVM with `native-image` command installed and `GRAALVM_HOME` environment variable set, see
   https://quarkus.io/guides/building-native-image-guide[Building a native executable] section of the Quarkus
   documentation.
-* If your are on Linux, `docker` is sufficient for the native mode too. Use `-Pnative,docker` instead of `-Pnative`
+* If you are on Linux, `docker` is sufficient for the native mode too. Use `-Pnative,docker` instead of `-Pnative`
   if you choose this option.
 
 == Step by step with the `rest-json` example
 
-1. Clone Camel Quarkus and checkout the latest release tag
+1. Clone Camel Quarkus and check out the latest release tag
 +
 [source,shell]
 ----