diff options
| -rw-r--r-- | docs/content/guide/forms.ngdoc | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/docs/content/guide/forms.ngdoc b/docs/content/guide/forms.ngdoc index 7eb0baba..35a6ff6a 100644 --- a/docs/content/guide/forms.ngdoc +++ b/docs/content/guide/forms.ngdoc @@ -154,10 +154,10 @@ This allows us to extend the above example with these features:  <script>    function Controller($scope) { -    $scope.master= {}; +    $scope.master = {};      $scope.update = function(user) { -      $scope.master= angular.copy(user); +      $scope.master = angular.copy(user);      };      $scope.reset = function() { | 
