aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide
diff options
context:
space:
mode:
authorGodmar Back2012-09-05 10:28:42 -0400
committerMisko Hevery2012-09-06 15:49:49 -0700
commit05fa20df81edc9a3d693414c2f5a2a55843e18df (patch)
tree3b58e9be69136d3e0756e142e13f5cf02c6287d8 /docs/content/guide
parent125573602f420a4f3c94cba762f03bff1b936f0c (diff)
downloadangular.js-05fa20df81edc9a3d693414c2f5a2a55843e18df.tar.bz2
docs(module): fixed module example and corrected typos
Diffstat (limited to 'docs/content/guide')
-rw-r--r--docs/content/guide/dev_guide.e2e-testing.ngdoc2
-rw-r--r--docs/content/guide/module.ngdoc2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/guide/dev_guide.e2e-testing.ngdoc b/docs/content/guide/dev_guide.e2e-testing.ngdoc
index 7cb04841..dd12e88a 100644
--- a/docs/content/guide/dev_guide.e2e-testing.ngdoc
+++ b/docs/content/guide/dev_guide.e2e-testing.ngdoc
@@ -122,7 +122,7 @@ Returns the current value of an input field with the given `name`.
## repeater(selector, label).count()
Returns the number of rows in the repeater matching the given jQuery `selector`. The `label` is
-used for test ouput.
+used for test output.
## repeater(selector, label).row(index)
Returns an array with the bindings in the row at the given `index` in the repeater matching the
diff --git a/docs/content/guide/module.ngdoc b/docs/content/guide/module.ngdoc
index bc55fea9..906f7a3f 100644
--- a/docs/content/guide/module.ngdoc
+++ b/docs/content/guide/module.ngdoc
@@ -31,7 +31,7 @@ Important things to notice:
<doc:source>
<script>
// declare a module
- var simpleAppModule = angular.module('myApp', []);
+ var myAppModule = angular.module('myApp', []);
// configure the module.
// in this example we will create a greeting filter