doc(typos): fix couple of typos in the docs

Minor documentation fixes. Should not be any code changes.
One test changed due to dependency on text in documentation.
This commit is contained in:
dandoyon
2011-07-29 18:42:16 -07:00
committed by Vojta Jina
parent 2d8d5aef29
commit 1f4b417184
14 changed files with 45 additions and 38 deletions

View File

@@ -64,7 +64,8 @@ describe('ValidatorTest', function(){
});
it('Phone', function() {
var error = "Phone number needs to be in 1(987)654-3210 format in North America or +999 (123) 45678 906 internationaly.";
var error = "Phone number needs to be in 1(987)654-3210 format in North America " +
"or +999 (123) 45678 906 internationally.";
assertEquals(angular.validator.phone("ab"), error);
assertEquals(null, angular.validator.phone("1(408)757-3023"));
assertEquals(null, angular.validator.phone("+421 (0905) 933 297"));