fix readme spacing so it is crecognized as code

dev
Max Rabin 12 years ago
parent a8769636a2
commit 90f9fbdb3e

@ -11,15 +11,12 @@ To do:
Example use: Example use:
angular.module('yourModule', ['LocalStorageModule']) angular.module('yourModule', ['LocalStorageModule'])
.controller('yourCtrl', [
.controller('yourCtrl', [ '$scope',
'$scope', 'localStorageService',
'localStorageService', function($scope, localStorageService) {
function($scope, localStorageService) { // Start fresh
localStorageService.clearAll();
// Start fresh localStorageService.add('Favorite Sport','value');
localStorageService.clearAll(); }]);
localStorageService.add('Favorite Sport','value');
}]);