From 71e71fc3c065a1a4e7db8c0332bfde515a9dd0c5 Mon Sep 17 00:00:00 2001 From: Ariel Mashraki Date: Mon, 22 Dec 2014 18:33:50 +0200 Subject: [PATCH] fix(README.md): add \n just for aesthetic --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f84a450..2247aea 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ myApp.config(function (localStorageServiceProvider) { ``` ##API Documentation ##isSupported -Checks if the browser support the current storage type(e.g: `localStorage`, `sessionStorage`). +Checks if the browser support the current storage type(e.g: `localStorage`, `sessionStorage`). **Returns:** `Boolean` ```js myApp.controller('MainCtrl', function($scope, localStorageService) { @@ -227,7 +227,7 @@ myApp.controller('MainCtrl', function($scope, localStorageService) { ###bind Bind $scope key to localStorageService. **Usage:** `localStorageService.bind(scope, property, value[optional], key[optional])` -***key:*** The corresponding key used in local storage +***key:*** The corresponding key used in local storage **Returns:** deregistration function for this listener. ```js myApp.controller('MainCtrl', function($scope, localStorageService) { @@ -255,7 +255,7 @@ myApp.controller('MainCtrl', function($scope, localStorageService) { ``` ###deriveKey -Return the derive key +Return the derive key **Returns** `String` ```js myApp.controller('MainCtrl', function($scope, localStorageService) { @@ -279,7 +279,7 @@ myApp.controller('MainCtrl', function($scope, localStorageService) { ##Cookie Deal with browser's cookies directly. ##cookie.isSupported -Checks if cookies are enabled in the browser. +Checks if cookies are enabled in the browser. **Returns:** `Boolean` ```js myApp.controller('MainCtrl', function($scope, localStorageService) {