aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/module.ngdoc
diff options
context:
space:
mode:
authorJamison Dance2012-10-14 09:57:18 -0600
committerIgor Minar2012-11-11 11:34:06 +0100
commitcd8b78ebfd088cf51847e04b85b8817b5dc0d10c (patch)
treea54cf2e42e41136e8fbc754b898d2f583b2c6e19 /docs/content/guide/module.ngdoc
parent88917578913172f26e9fa045eaf54d122abb6729 (diff)
downloadangular.js-cd8b78ebfd088cf51847e04b85b8817b5dc0d10c.tar.bz2
docs(guide): fix run-on sentence in modules guide
Diffstat (limited to 'docs/content/guide/module.ngdoc')
-rw-r--r--docs/content/guide/module.ngdoc5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/content/guide/module.ngdoc b/docs/content/guide/module.ngdoc
index 741474c0..db534eb2 100644
--- a/docs/content/guide/module.ngdoc
+++ b/docs/content/guide/module.ngdoc
@@ -5,9 +5,8 @@
# What is a Module?
Most applications have a main method which instantiates, wires, and bootstraps the application.
-Angular apps don't have a main method, instead modules serve the purpose of declaratively
-specifying how an application should be bootstrapped. There are several advantages to this
-approach:
+Angular apps don't have a main method. Instead modules declaratively specify how an application
+should be bootstrapped. There are several advantages to this approach:
* The process is more declarative which is easier to understand
* In unit-testing there is no need to load all modules, which may aid in writing unit-tests.