aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpzajdel2013-10-06 22:18:26 +0200
committerPete Bacon Darwin2013-10-06 22:26:33 +0100
commit28fe4464d8f40409dc05a290224cc06883aed2f6 (patch)
tree9e37b12d28a0269ab80e13f0307abb7bd1ec0e7f
parent47f7bd706efc5f2944d182e46c1b1d324298ff36 (diff)
downloadangular.js-28fe4464d8f40409dc05a290224cc06883aed2f6.tar.bz2
docs(tutorial/step02): fix missing brace
Closes #4301
-rw-r--r--docs/content/tutorial/step_02.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/tutorial/step_02.ngdoc b/docs/content/tutorial/step_02.ngdoc
index 65f3ffed..16dbe366 100644
--- a/docs/content/tutorial/step_02.ngdoc
+++ b/docs/content/tutorial/step_02.ngdoc
@@ -167,7 +167,7 @@ describe('PhoneCat controllers', function() {
ctrl = $controller('PhoneListCtrl', { $scope: scope });
expect(scope.phones.length).toBe(3);
- });
+ }));
});
});
</pre>