From 24c94b83fad3aa1e4c555448e3dbff2e0b399e04 Mon Sep 17 00:00:00 2001 From: TheRealMaxion Date: Fri, 17 Mar 2017 12:38:13 +0100 Subject: [PATCH] docs(tutorial/step_04): fix typo (each --> its) Closes #15826 --- docs/content/tutorial/step_04.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/tutorial/step_04.ngdoc b/docs/content/tutorial/step_04.ngdoc index 2b96e8763..2865ad765 100644 --- a/docs/content/tutorial/step_04.ngdoc +++ b/docs/content/tutorial/step_04.ngdoc @@ -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!