From 0ee979362f1600076d1ff32e7dbc21255803cfe9 Mon Sep 17 00:00:00 2001 From: Zahid Mahir Date: Tue, 9 Sep 2014 11:35:04 -0400 Subject: [PATCH] Update step_03.ngdoc Corrected slight grammar issue. --- docs/content/tutorial/step_03.ngdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/tutorial/step_03.ngdoc b/docs/content/tutorial/step_03.ngdoc index 383da05bdd1d..4ba6a99f8968 100644 --- a/docs/content/tutorial/step_03.ngdoc +++ b/docs/content/tutorial/step_03.ngdoc @@ -95,7 +95,7 @@ describe('PhoneCat App', function() { }); - it('should filter the phone list as user types into the search box', function() { + it('should filter the phone list as a user types into the search box', function() { var phoneList = element.all(by.repeater('phone in phones')); var query = element(by.model('query')); @@ -159,7 +159,7 @@ Let's see how we can get the current value of the `query` model to appear in the var phoneList = element.all(by.repeater('phone in phones')); var query = element(by.model('query')); - it('should filter the phone list as user types into the search box', function() { + it('should filter the phone list as a user types into the search box', function() { expect(phoneList.count()).toBe(3); query.sendKeys('nexus');