docs(forms.ngdoc): fix spacing in example

Closes #3930
This commit is contained in:
Anthony Tran 2013-09-08 17:13:16 -07:00 committed by Pete Bacon Darwin
parent 79dc95cca6
commit e4415d21d3

View file

@ -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() {