From a628d947091434be941c52048cbf68af8a1a20b3 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 7 Dec 2020 16:52:59 +0000 Subject: [PATCH] Update code style (rearrange items) --- code-style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code-style.md b/code-style.md index 1562aef..465072c 100644 --- a/code-style.md +++ b/code-style.md @@ -1,6 +1,6 @@ * Lines no longer than 80 characters -* Egyptian brackets (`else/catch/finally` continue the same line as the preceding bracket) * Tabs for indentation, tab width of 4 +* Egyptian brackets (`else/catch/finally` continue the same line as the preceding bracket) * `if/else/for/while` may omit brackets if the body fits on a single line * If the `if` uses brackets, the `else` should too (and vice versa) * Use `foo` rather than `mFoo`, `_foo`, etc for field names