docs(tutorial/step_04): fix typo (each --> its)

Closes #15826
This commit is contained in:
TheRealMaxion
2017-03-17 12:38:13 +01:00
committed by Georgios Kalpakas
parent 0c3620bbf5
commit 24c94b83fa
+1 -1
View File
@@ -41,7 +41,7 @@ maintain. As we add more and more features, our files will get bigger and bigger
difficult to navigate and find the code we are looking for.
Instead we should put each feature/entity in its own file. Each stand-alone controller will be
defined in its own file, each component will be defined in each own file, etc.
defined in its own file, each component will be defined in its own file, etc.
Luckily, we don't need to change anything with respect to that guideline in our code, since we have
already defined our `phoneList` component in its own `phone-list.component.js` file. Good job!