From c1c17f4b5184cee8f1e82d5eb432f022eaad4828 Mon Sep 17 00:00:00 2001 From: M M Arif Date: Tue, 3 Dec 2019 12:53:33 +0000 Subject: [PATCH] --- Code-Standards.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Code-Standards.md b/Code-Standards.md index 10450cf..0e9d9fd 100644 --- a/Code-Standards.md +++ b/Code-Standards.md @@ -54,7 +54,7 @@ public class ExploreRepositoriesFragment extends Fragment { Note the blank line before declaring any variables and functions. -Usage of if statements: +#### Usage of if statements: ``` if (response.isSuccessful()) { assert response.body() != null; @@ -64,3 +64,6 @@ else { Log.i("onResponse", String.valueOf(response.code())); } ``` + +#### Tab or spaces? +GitNex app has used tabs(4 spaces) and it is recommended to use tab. \ No newline at end of file