diff options
| author | 刘朋飞 | 2014-01-16 14:22:35 +0800 | 
|---|---|---|
| committer | Caitlin Potter | 2014-01-17 15:34:33 -0500 | 
| commit | cd74f7446822189929270643ce7c4dc9eb7fa36a (patch) | |
| tree | 6d2b118b6e29b7e5afda870f8d9659f67cfed229 /docs/content/tutorial/step_02.ngdoc | |
| parent | fced1c0c1663738885033a3aa00a02dc89bf000b (diff) | |
| download | angular.js-cd74f7446822189929270643ce7c4dc9eb7fa36a.tar.bz2 | |
docs(tutorial): add missing semicolon to code snippet
Lets encourage people to use semicolons in javascript :>
Closes #5834
Diffstat (limited to 'docs/content/tutorial/step_02.ngdoc')
| -rw-r--r-- | docs/content/tutorial/step_02.ngdoc | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/docs/content/tutorial/step_02.ngdoc b/docs/content/tutorial/step_02.ngdoc index ef82c254..5710ddaa 100644 --- a/docs/content/tutorial/step_02.ngdoc +++ b/docs/content/tutorial/step_02.ngdoc @@ -217,7 +217,7 @@ To run the test, do the following:  * Create a new model property in the controller and bind to it from the template. For example: -          $scope.name = "World" +          $scope.name = "World";    Then add a new binding to `index.html`: | 
