From 90f9fbdb3e61f3680e5b113e8b64c2c2a2e49d44 Mon Sep 17 00:00:00 2001 From: Max Rabin Date: Fri, 14 Sep 2012 09:46:57 +0300 Subject: [PATCH] fix readme spacing so it is crecognized as code --- README.md | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index a77afd5..8be5334 100644 --- a/README.md +++ b/README.md @@ -11,15 +11,12 @@ To do: Example use: -angular.module('yourModule', ['LocalStorageModule']) - - .controller('yourCtrl', [ - '$scope', - 'localStorageService', - function($scope, localStorageService) { - - // Start fresh - localStorageService.clearAll(); - localStorageService.add('Favorite Sport','value'); - - }]); \ No newline at end of file + angular.module('yourModule', ['LocalStorageModule']) + .controller('yourCtrl', [ + '$scope', + 'localStorageService', + function($scope, localStorageService) { + // Start fresh + localStorageService.clearAll(); + localStorageService.add('Favorite Sport','value'); + }]);