From 19c3def5824df5fa3031c0b6bda20ab78c7319a7 Mon Sep 17 00:00:00 2001 From: Kyle Lobo Date: Thu, 18 Jul 2019 18:58:06 +0530 Subject: [PATCH] Update CONTRIBUTING.md Co-Authored-By: per1234 --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 454d3284c4e..6baf56678b4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -51,7 +51,7 @@ Pull requests are an easy and effective way to submit a proposal for a change to - Code formatting should be consistent with the style used in the existing code. - Don't leave commented out code. A record of this code is already preserved in the commit history. - Note that the Arduino core libraries support many boards and processors. When fixing or adding functionality for one of them, it's easy to break something on the others. Please test your changes on as many processors as possible. Even if you don't have a particular board, try compiling your patch for it to make sure that you haven't introduced any errors. -- All commits must be atomic. This means that the commit completely accomplishes a single task. Each commit should result in a fully functional code. Multiple tasks should not be combined in a single commit, but a single task should not be split over multiple commits (e.g. one commit per file modified is not a good practice). For more information see http://www.freshconsulting.com/atomic-commits. +- All commits must be atomic. This means that the commit completely accomplishes a single task. Each commit should result in fully functional code. Multiple tasks should not be combined in a single commit, but a single task should not be split over multiple commits (e.g. one commit per file modified is not a good practice). For more information see http://www.freshconsulting.com/atomic-commits. - Each pull request should address a single bug fix or enhancement. This may consist of multiple commits. If you have multiple, unrelated fixes or enhancements to contribute, submit them as separate pull requests. - Commit messages: - Use the [imperative mood](http://chris.beams.io/posts/git-commit/#imperative) in the title. For example: "Apply editor.indent preference"