From 33ee90cd3efa8005ad251e7ba6df3f390e57af65 Mon Sep 17 00:00:00 2001 From: Chase Noel Date: Mon, 6 Oct 2014 19:14:42 -0600 Subject: [PATCH] Fixed code indentation for setting cache defaults --- guide/angular-cache/basics.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/guide/angular-cache/basics.md b/guide/angular-cache/basics.md index 937994c..adeb186 100644 --- a/guide/angular-cache/basics.md +++ b/guide/angular-cache/basics.md @@ -80,12 +80,12 @@ angular.module('app', ['angular-data.DSCacheFactory']) DSCacheFactoryProvider.setCacheDefaults({ maxAge: 3600000, - deleteOnExpire: 'aggressive', - onExpire: function (key, value) { - $http.get(key).success(function (data) { - profileCache.put(key, data); - }); - } + deleteOnExpire: 'aggressive', + onExpire: function (key, value) { + $http.get(key).success(function (data) { + profileCache.put(key, data); + }); + } }); }); ```