Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit ff481f0

Browse files
committed
test line endings fix
1 parent 34d86c2 commit ff481f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/content/guide/bootstrap.ngdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ initialization.
2525
</pre>
2626

2727
* Place the `script` tag at the buttom of the page. Placing script tags at the end of the page
28-
improves app load time becouse the HTML loading is not blocked by loading of the `angular.js`
28+
improves app load time because the HTML loading is not blocked by loading of the `angular.js`
2929
script. You can get the latest bits from {@link http://code.angularjs.org}. Please don't link
3030
your production code to this URL, as it will expose a security hole on your site. For
3131
experimental development linking to our site is fine.

docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ describe('state', function() {
253253
var mainCtrl = $controller(MainCtrl, {$scope: mainScope});
254254
childScope = mainScope.$new();
255255
var childCtrl = $controller(ChildCtrl, {$scope: childScope});
256-
babyScope = $rootScope.$new();
256+
babyScope = childCtrl.$new();
257257
var babyCtrl = $controller(BabyCtrl, {$scope: babyScope});
258258
}));
259259

0 commit comments

Comments
 (0)