From a0229803deb9e001733c7b49609095cb1ff3123b Mon Sep 17 00:00:00 2001 From: Christopher Rains Date: Fri, 19 Sep 2014 15:32:17 -0400 Subject: [PATCH] docs(tutorial/step_02): fix formatting --- docs/content/tutorial/step_02.ngdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/tutorial/step_02.ngdoc b/docs/content/tutorial/step_02.ngdoc index 43a1153e8..b52119990 100644 --- a/docs/content/tutorial/step_02.ngdoc +++ b/docs/content/tutorial/step_02.ngdoc @@ -233,7 +233,7 @@ browser is limited, which results in your karma tests running extremely slow. Refresh your browser and verify that it says "Hello, World!". -* Update the unit test for the controller in ./test/unit/controllersSpec.js to reflect the previous change. For example by adding: +* Update the unit test for the controller in `./test/unit/controllersSpec.js` to reflect the previous change. For example by adding: expect(scope.name).toBe('World'); @@ -251,7 +251,7 @@ browser is limited, which results in your karma tests running extremely slow. {{i+1}} - Extra points: try and make an 8x8 table using an additional ng-repeat. + Extra points: try and make an 8x8 table using an additional `ng-repeat`. * Make the unit test fail by changing `expect(scope.phones.length).toBe(3)` to instead use `toBe(4)`.