Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 6fa6a1d

Browse files
yangshunwardbell
authored andcommitted
fix: misc typos in three files (#3463)
1 parent 6f17693 commit 6fa6a1d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

public/docs/_examples/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// this tsconfig is used for protractor tests
2-
// see _boilerplate/tsconfig.json for the the tsconfig used in examples
2+
// see _boilerplate/tsconfig.json for the tsconfig used in examples
33
{
44
"compilerOptions": {
55
"target": "es6",

public/docs/ts/latest/tutorial/toh-pt6.jade

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ h1 Providing HTTP Services
259259
calling `JSON.stringify`. The body content type
260260
(`application/json`) is identified in the request header.
261261

262-
Refresh the browser, change a hero name, save your change,
262+
Refresh the browser, change a hero name, save your change,
263263
and click the browser Back button. Changes should now persist.
264264

265265
.l-main-section
@@ -400,7 +400,7 @@ h1 Providing HTTP Services
400400
Also, add styles for the new component.
401401
+makeExample('toh-6/ts/src/app/hero-search.component.css', null, 'src/app/hero-search.component.css')
402402
:marked
403-
As the user types in the search box, a *keyup* event binding calls the component's `search()`
403+
As the user types in the search box, a *keyup* event binding calls the component's `search()`
404404
method with the new search box value.
405405

406406
As expected, the `*ngFor` repeats hero objects from the component's `heroes` property.

public/resources/js/directives/code-pane.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* @requires codeTab Directive
55
*
6-
* Invidiual panes displayed in the the
6+
* Individual panes displayed in the
77
* codeTab elements
88
*/
99

@@ -30,9 +30,9 @@ angularIO.directive('codePane', function() {
3030
return function(scope, element, attrs, controller) {
3131
scope.name = attrs.name;
3232

33-
//ADD PANE TO CONTROLLER
33+
// ADD PANE TO CONTROLLER
3434
controller.addPane(scope);
3535
};
3636
}
3737
};
38-
});
38+
});

0 commit comments

Comments
 (0)