aboutsummaryrefslogtreecommitdiffstats
path: root/src/ngResource/resource.js
diff options
context:
space:
mode:
authorCedric Soulas2013-02-10 20:42:55 +0100
committerIgor Minar2013-02-14 15:47:16 -0800
commit37bdcc984a0240cf0ac125613acee12f1cee389d (patch)
tree264d9ba6320d2564fec54f70d2adf2987be2b903 /src/ngResource/resource.js
parent027f20be1fe426e39a0404e74b17bc654273391c (diff)
downloadangular.js-37bdcc984a0240cf0ac125613acee12f1cee389d.tar.bz2
docs($resource): fix bad indentation producing a code block
Diffstat (limited to 'src/ngResource/resource.js')
-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 6e179827..0bcf4cce 100644
--- a/src/ngResource/resource.js
+++ b/src/ngResource/resource.js
@@ -183,9 +183,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'});