aboutsummaryrefslogtreecommitdiffstats
path: root/src/Scope.js
diff options
context:
space:
mode:
authorIgor Minar2011-08-14 01:47:05 -0700
committerIgor Minar2011-08-15 00:21:02 -0700
commit2bbef363e4a97b3af6a6900f9a2021a0d191ca40 (patch)
tree9b8dfdd4d3f1edec7b9e4309c27cccc72f87e376 /src/Scope.js
parent035ad727267877cb1be58dacb24ddf97cc7b5512 (diff)
downloadangular.js-2bbef363e4a97b3af6a6900f9a2021a0d191ca40.tar.bz2
style(*): remove extra semicolons
Diffstat (limited to 'src/Scope.js')
-rw-r--r--src/Scope.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Scope.js b/src/Scope.js
index 6e90ea66..e978b659 100644
--- a/src/Scope.js
+++ b/src/Scope.js
@@ -30,7 +30,7 @@ function createScope(providers, instanceCache) {
var scope = new Scope();
(scope.$service = createInjector(scope, providers, instanceCache)).eager();
return scope;
-};
+}
/**