diff options
Diffstat (limited to 'docs/content/cookbook/helloworld.ngdoc')
| -rw-r--r-- | docs/content/cookbook/helloworld.ngdoc | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/docs/content/cookbook/helloworld.ngdoc b/docs/content/cookbook/helloworld.ngdoc index 9562aaff..67d78bbe 100644 --- a/docs/content/cookbook/helloworld.ngdoc +++ b/docs/content/cookbook/helloworld.ngdoc @@ -6,7 +6,7 @@  <doc:example>   <doc:source>    <script> -    function HelloCntl(){ +    function HelloCntl() {        this.name = 'World';      }    </script> @@ -17,7 +17,7 @@    </div>   </doc:source>   <doc:scenario> -   it('should change the binding when user enters text', function(){ +   it('should change the binding when user enters text', function() {       expect(binding('name')).toEqual('World');       input('name').enter('angular');       expect(binding('name')).toEqual('angular'); | 
