Skip to content
Permalink
Browse files

docs(tutorial): fix typos

- **step_04:** `controllers is one file` --> `controllers in one file`
- **step_06:** `.components.js` --> `.component.js`

Closes #15197
  • Loading branch information
GregoryPorter authored and gkalpak committed Sep 29, 2016
1 parent ddb4ef1 commit 714b53ac6fd68f0909cf9aaea14f9b38f62f0da7
Showing with 2 additions and 2 deletions.
  1. +1 −1 docs/content/tutorial/step_04.ngdoc
  2. +1 −1 docs/content/tutorial/step_06.ngdoc
@@ -34,7 +34,7 @@ To that end, we will explain why and how we:
## One Feature per File

It might be tempting, for the sake of simplicity, to put everything in one file, or have one file
per type; e.g. all controllers is one file, all components in another file, all services in a third
per type; e.g. all controllers in one file, all components in another file, all services in a third
file, and so on.
This might seem to work well in the beginning, but as our application grows it becomes a burden to
maintain. As we add more and more features, our files will get bigger and bigger and it will be
@@ -80,7 +80,7 @@ manipulation code is necessary!
## Component Controller

<br />
**`app/phone-list/phone-list.components.js`:**
**`app/phone-list/phone-list.component.js`:**

```js
angular.

0 comments on commit 714b53a

Please sign in to comment.
You can’t perform that action at this time.