Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion public/docs/_examples/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// this tsconfig is used for protractor tests
// see _boilerplate/tsconfig.json for the the tsconfig used in examples
// see _boilerplate/tsconfig.json for the tsconfig used in examples
{
"compilerOptions": {
"target": "es6",
Expand Down
4 changes: 2 additions & 2 deletions public/docs/ts/latest/tutorial/toh-pt6.jade
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ h1 Providing HTTP Services
calling `JSON.stringify`. The body content type
(`application/json`) is identified in the request header.

Refresh the browser, change a hero name, save your change,
Refresh the browser, change a hero name, save your change,
and click the browser Back button. Changes should now persist.

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

As expected, the `*ngFor` repeats hero objects from the component's `heroes` property.
Expand Down
6 changes: 3 additions & 3 deletions public/resources/js/directives/code-pane.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* @requires codeTab Directive
*
* Invidiual panes displayed in the the
* Individual panes displayed in the
* codeTab elements
*/

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

//ADD PANE TO CONTROLLER
// ADD PANE TO CONTROLLER
controller.addPane(scope);
};
}
};
});
});