From 1970f58af7e17fe79a429ac38c1d54544f1045d1 Mon Sep 17 00:00:00 2001 From: cloverharvest Date: Wed, 13 Apr 2016 18:35:33 -0700 Subject: [PATCH] docs($http): describe your change... Correcting a typo line 558: To prevent this to replace to prevent his. --- src/ng/http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/http.js b/src/ng/http.js index 09df456ed57d..f73b79b49615 100644 --- a/src/ng/http.js +++ b/src/ng/http.js @@ -555,7 +555,7 @@ function $HttpProvider() { * That means changes to the properties of `data` are not local to the transform function (since Javascript passes objects by reference). * For example, when calling `$http.get(url, $scope.myObject)`, modifications to the object's properties in a transformRequest * function will be reflected on the scope and in any templates where the object is data-bound. - * To prevent his, transform functions should have no side-effects. + * To prevent this, transform functions should have no side-effects. * If you need to modify properties, it is recommended to make a copy of the data, or create new object to return. * *