You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2022/04/08 12:26:07 UTC

[camel] branch main updated: Fix typos in Contributing guide

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

orpiske 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 00510a67fe8 Fix typos in Contributing guide
00510a67fe8 is described below

commit 00510a67fe84c8b3eff35a507b40e63adeeebde6
Author: Aurélien Pupier <ap...@redhat.com>
AuthorDate: Fri Apr 8 13:17:27 2022 +0200

    Fix typos in Contributing guide
    
    Signed-off-by: Aurélien Pupier <ap...@redhat.com>
---
 CONTRIBUTING.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 176ec763b4c..0f97a70f06e 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -2,25 +2,25 @@
 First of all, thank you for having an interest in contributing to Apache Camel.
 If this is your first contribution to Camel, please review [the guidelines for contributing to Camel and its related projects](https://camel.apache.org/community/contributing/).
 
-Then follow these simple guidlines for working on the code and committing your changes.
+Then follow these simple guidelines for working on the code and committing your changes.
 
-- Fork and then clone the github camel repository:
+- Fork and then clone the GitHub camel repository:
 
     git clone https://github.com/your-github-username/camel.git
 
-- Build the project using maven:
+- Build the project using Maven:
 
     mvn clean install -Pfastinstall
 
 - Add a unit test with assertions for your changes.
 
-- Run checkstyle using the sourcecheck profile in maven:
+- Run Checkstyle using the `sourcecheck` profile in Maven:
 
     mvn clean install -Psourcecheck
 
 - Check the documentation (.adoc file) for the code which you have modified and update it if required. For example if you have added or modified a component, the documentation file is in the src/main/docs folder.
 
-- Write a commit messsage which references the related JIRA or Github issue and includes some detail of your changes.
+- Write a commit message which references the related JIRA or GitHub issue and includes some detail of your changes.
 - Push to your fork and create a pull request.
 - Stay engaged, follow and respond to comments or questions you might be asked by the Camel team.