From 6db353e1a9df0e7f0c64008fae0a5dc76f2f48b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Daubensch=C3=BCtz?= Date: Mon, 16 Nov 2015 17:18:24 +0100 Subject: [PATCH] Fix indentation --- js/sources/NAMING_CONVENTIONS.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/sources/NAMING_CONVENTIONS.md b/js/sources/NAMING_CONVENTIONS.md index 712a4e0c..81158793 100644 --- a/js/sources/NAMING_CONVENTIONS.md +++ b/js/sources/NAMING_CONVENTIONS.md @@ -54,10 +54,10 @@ UserSource.lookupCurrentUser This talks about the naming in an actual `*_source.js` file: ```javascript - lookupCurrentUser: { - success: UserActions.successFetchCurrentUser, // 'success' - error: UserActions.errorCurrentUser, // 'error' - }, +lookupCurrentUser: { + success: UserActions.successFetchCurrentUser, // 'success' + error: UserActions.errorCurrentUser, // 'error' +}, ``` ### Examples for Rule 3.)