From c51a19be51e44843f807b6d86fcb345fc56f3c84 Mon Sep 17 00:00:00 2001 From: Max Bruckner Date: Sun, 8 Oct 2017 22:05:19 +0200 Subject: [PATCH] CONTRIBUTING.md: Fix '4 tabs' -> '4 spaces' --- .github/CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 172cfcd..83d2e59 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -15,7 +15,7 @@ Coding Style ------------ The coding style has been discussed in [#24](https://github.com/DaveGamble/cJSON/issues/24). The basics are: -* Use 4 tabs for indentation +* Use 4 spaces for indentation * No oneliners (conditions, loops, variable declarations ...) * Always use parenthesis for control structures * Don't implicitly rely on operator precedence, use round brackets in expressions. e.g. `(a > b) && (c < d)` instead of `a>b && c