aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCedric Soulas2013-02-10 20:42:55 +0100
committerIgor Minar2013-02-14 15:45:37 -0800
commit14fd064a62999a804bcce1050c81f603510fad95 (patch)
tree29a22275784f1106bd9b4e9ba8f43a1c937fdb4e
parent3178afbf0c46705ba8320fccc52a08730e8e05fa (diff)
downloadangular.js-14fd064a62999a804bcce1050c81f603510fad95.tar.bz2
docs($resource): fix bad indentation producing a code block
-rw-r--r--src/ngResource/resource.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ngResource/resource.js b/src/ngResource/resource.js
index 914de226..eac77603 100644
--- a/src/ngResource/resource.js
+++ b/src/ngResource/resource.js
@@ -145,9 +145,9 @@
});
</pre>
*
- * It's worth noting that the success callback for `get`, `query` and other method gets passed
- * in the response that came from the server as well as $http header getter function, so one
- * could rewrite the above example and get access to http headers as:
+ * It's worth noting that the success callback for `get`, `query` and other method gets passed
+ * in the response that came from the server as well as $http header getter function, so one
+ * could rewrite the above example and get access to http headers as:
*
<pre>
var User = $resource('/user/:userId', {userId:'@id'});