aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnthony Tran2013-09-08 17:13:16 -0700
committerPete Bacon Darwin2013-09-09 17:31:45 +0100
commit8a7240ddfd682448fff52f2cad0a2b5d0131f0f4 (patch)
treee5f9227edb114eeda38f506286a3e2a5709e6599
parentac70ec034082f9af1cbf0c59ee797726a3a280e9 (diff)
downloadangular.js-8a7240ddfd682448fff52f2cad0a2b5d0131f0f4.tar.bz2
docs(forms.ngdoc): fix spacing in example
Closes #3930
-rw-r--r--docs/content/guide/forms.ngdoc4
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() {