From cfb75c6b98729b1012053a3f09f72caddbd44304 Mon Sep 17 00:00:00 2001 From: "Van J. Wilson" Date: Wed, 21 Sep 2016 06:05:31 -0400 Subject: [PATCH] Fix typo in Contributing Guide Removes a minor typo, regarding how to name feature branches. Fixes #14550 --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7fd2f83b8..3fc31599b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -67,8 +67,8 @@ Refer to your favorite Git tutorial/book for further detailed help. Some good practices for the feature branch: -* Give it a meaningful name instead of, e.g. `prevent-zero-divide` instead of just `fix` -* Make *granular* and *atomic* commits, e.g. do not mix a typo fix with some major refactoring +* Give it a meaningful name, e.g. `prevent-zero-divide`, instead of just `fix`. +* Make *granular* and *atomic* commits, e.g. do not mix a typo fix with some major refactoring. * Keep one branch for one specific issue. If you need to work on other unrelated issues, create another branch. ## Review and Merge