From cc36ec98917114b0b7fa3627974e865e6775c49c Mon Sep 17 00:00:00 2001 From: Jacob Reid Date: Tue, 24 May 2016 16:09:29 -0600 Subject: [PATCH] docs(tutorial/4 - Directory and File Organization): describe your change... --- 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 cc2e152f0b4a..09edd3722e65 100644 --- a/docs/content/tutorial/step_04.ngdoc +++ b/docs/content/tutorial/step_04.ngdoc @@ -115,7 +115,7 @@ Well, not so fast. The new project doesn't know anything about a `phonecatApp` m have to replace all references to `phonecatApp` with the name of this project's main module. As you can imagine this is both laborious and error-prone. -Yeah, you guessed it: There is a better way ! +Yeah, you guessed it: There is a better way! Each feature/section, will declare its own module and have all related entities registered there. The main module (`phonecatApp`) will declare a dependency on each feature/section module. Now,