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); + }); + } }); }); ```