aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/tutorial/step_04.ngdoc
diff options
context:
space:
mode:
authorIgor Minar2011-06-06 22:02:30 -0700
committerIgor Minar2011-06-06 23:10:30 -0700
commitc35b0a7907de1535269876668c345ce944681804 (patch)
treea3ba548369ca65db790809197196ae946cc93a18 /docs/content/tutorial/step_04.ngdoc
parent805bb5bb6e5842a5760976a446074d553609f5b6 (diff)
downloadangular.js-c35b0a7907de1535269876668c345ce944681804.tar.bz2
yet another docs batch
Diffstat (limited to 'docs/content/tutorial/step_04.ngdoc')
-rw-r--r--[-rwxr-xr-x]docs/content/tutorial/step_04.ngdoc7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/content/tutorial/step_04.ngdoc b/docs/content/tutorial/step_04.ngdoc
index 7d5419e3..7c942c34 100755..100644
--- a/docs/content/tutorial/step_04.ngdoc
+++ b/docs/content/tutorial/step_04.ngdoc
@@ -71,9 +71,9 @@ two provided sorting options.
<img src="img/tutorial/tutorial_04-06_final.png">
-* We then chained the `$filter` method with {@link api/angular.array.orderBy `$orderBy`} method to
+* We then chained the `$filter` method with {@link api/angular.Array.orderBy `$orderBy`} method to
further process the input into the repeater. `$orderBy` is a utility method similar to {@link
-api/angular.array.filter `$filter`}, but instead of filtering an array, it reorders it.
+api/angular.Array.filter `$filter`}, but instead of filtering an array, it reorders it.
Angular creates a two way data-binding between the select element and the `orderProp` model.
@@ -201,7 +201,8 @@ Let's turn our attention to the end-to-end test.
__`test/e2e/scenarios.js`:__
<pre>
...
- it('should be possible to control phone order via the drop down select box', function() {
+ it('should be possible to control phone order via the drop down select box',
+ function() {
// let's narrow the dataset to make the test assertions shorter