From 391c81d49de5fbb0d11514886f10d9fd52df5647 Mon Sep 17 00:00:00 2001 From: Justin Noel Date: Sun, 26 Jan 2014 11:24:59 -0600 Subject: [PATCH] Fixed missing closing bracket in config example. Signed-off-by: Justin Noel --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5492993..5dceadd 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ available on the localStorageServiceProvider angular.module('yourModule', ['LocalStorageModule']) .config(['localStorageServiceProvider', function(localStorageServiceProvider){ localStorageServiceProvider.setPrefix('newPrefix'); -}); +}]); ``` Check out the full demo and documentation at http://gregpike.net/demos/angular-local-storage/demo.html