From a51d8dbe743df9a96b9880aa2256bd7466df0ee2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Klang=20=28=E2=88=9A=29?= Date: Mon, 24 Sep 2012 16:23:45 +0300 Subject: [PATCH] Update CONTRIBUTING.md Properly indenting CONTRIBUTING.md --- CONTRIBUTING.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a85436ef57..ba370e7bb5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -44,14 +44,14 @@ increase maintainability and spread knowledge about how things are solved. Core review values: * Rule: [The Boy Scout Rule](http://programmer.97things.oreilly.com/wiki/index.php/The_Boy_Scout_Rule) - Why: Small improvements add up over time, keeping the codebase in shape. + - Why: Small improvements add up over time, keeping the codebase in shape. * Rule: [Don't Repeat Yourself](http://programmer.97things.oreilly.com/wiki/index.php/Don't_Repeat_Yourself) - Why: Repetitions are not maintainable, keeping things DRY makes it easier to fix bugs and refactor, + - Why: Repetitions are not maintainable, keeping things DRY makes it easier to fix bugs and refactor, since you only need to apply the correction in one place, or perform the refactoring at one place. * Rule: Feature tests > Integration tests > Unit tests - Why: Without proving that a feature works, the code is only liability, - Without proving that a feature works with other features, the code is of limited value, - Without proving the individual parts of a feature works, the code is harder to debug. + - Why: Without proving that a feature works, the code is only liability. + Without proving that a feature works with other features, the code is of limited value. + Without proving the individual parts of a feature works, the code is harder to debug. ##Source style##