From e18c56dd7610b8cf5bb7cb6a1e604c93c3c56a9a Mon Sep 17 00:00:00 2001 From: Henrique Morbin Date: Mon, 15 Aug 2016 15:56:31 -0300 Subject: [PATCH] Fix indentation --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a7cac50..bce0fd1 100644 --- a/README.md +++ b/README.md @@ -32,10 +32,10 @@ To program what happens when the Empty State's reload button is touched, add thi ```swift extension MyViewController: ErrorProne { -func errorKingEmptyStateReloadButtonTouched() { -//load my stuff again -errorKing?.errorKingEmptyStateReloadButtonTouched() -} + func errorKingEmptyStateReloadButtonTouched() { + //load my stuff again + errorKing?.errorKingEmptyStateReloadButtonTouched() + } } ``` @@ -43,8 +43,8 @@ Additionally, you can further customize ErrorKing by telling what happens before ```swift func actionBeforeDisplayingErrorKingEmptyState() { -//do something before displaying the empty state screen, like disabling your tableView's scrolling -errorKing?.actionBeforeDisplayingErrorKingEmptyState() + //do something before displaying the empty state screen, like disabling your tableView's scrolling + errorKing?.actionBeforeDisplayingErrorKingEmptyState() } ```