From c241a577616ae1bfad05dcf0d80f49864840c09d Mon Sep 17 00:00:00 2001 From: Zorigt Bazarragchaa Date: Mon, 5 May 2014 13:49:41 -0700 Subject: [PATCH] docs(tutorial/index): explain E2E acronym It was confusing to read "end 2 end" as a numeric two. I kept wondering what two end(s). Later in the tutorial, the text switched to "End to End" which made more sense than numeric two. --- docs/content/tutorial/index.ngdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/tutorial/index.ngdoc b/docs/content/tutorial/index.ngdoc index c4fde0bd..b9f8e699 100644 --- a/docs/content/tutorial/index.ngdoc +++ b/docs/content/tutorial/index.ngdoc @@ -130,7 +130,7 @@ This command will download the following tools, into the `node_modules` director - [Bower][bower] - client-side code package manager - [Http-Server][http-server] - simple local static web server - [Karma][karma] - unit test runner -- [Protractor][protractor] - end 2 end test runner +- [Protractor][protractor] - end to end (E2E) test runner Running `npm install` will also automatically use bower to download the Angular framework into the `app/bower_components` directory. @@ -146,7 +146,7 @@ tasks that you will need while developing: - `npm start` : start a local development web-server - `npm test` : start the Karma unit test runner -- `npm run protractor` : run the Protractor end 2 end tests +- `npm run protractor` : run the Protractor end to end (E2E) tests - `npm run update-webdriver` : install the drivers needed by Protractor ### Install Helper Tools (optional)