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:16 UTC

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

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]`