aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoradeelcap152014-02-25 09:05:52 +0500
committerCaitlin Potter2014-02-24 23:18:44 -0500
commit1b1413a9d48cc2c2593822eef0394fbff3671fd4 (patch)
treea39faa0762cd0901710bef7ef76202690532e5f5
parent4c4537e65e6cf911c9659b562d89e3330ce3ffae (diff)
downloadangular.js-1b1413a9d48cc2c2593822eef0394fbff3671fd4.tar.bz2
docs(guide/concepts): reference correct module name.
Fixed a mistake, changed invoice to invoice2. Closes #6438
-rw-r--r--docs/content/guide/concepts.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/guide/concepts.ngdoc b/docs/content/guide/concepts.ngdoc
index 2c48f724..bee2f195 100644
--- a/docs/content/guide/concepts.ngdoc
+++ b/docs/content/guide/concepts.ngdoc
@@ -271,7 +271,7 @@ including the configuration of all modules that this module depends on.
In the example above:
The template contains the directive `ng-app="invoice2"`. This tells Angular
-to use the `invoice` module as the main module for the application.
+to use the `invoice2` module as the main module for the application.
The code snippet `angular.module('invoice2', ['finance2'])` specifies that the `invoice2` module depends on the
`finance2` module. By this, Angular uses the `InvoiceController` as well as the `currencyConverter` service.