aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRené Wilhelm2014-01-10 02:48:26 +0100
committerIgor Minar2014-01-10 01:10:19 -0800
commit9f566db33c29f2b5ff6affeebd624340f618884e (patch)
treea4a32d231c1021c9a01d7cbd7f3621d56443454b
parentc77b2bcca36cf199478b8fb651972a1f650f646b (diff)
downloadangular.js-9f566db33c29f2b5ff6affeebd624340f618884e.tar.bz2
docs(\$resource): fixed typo (s/seapph/search)
Closes #5718
-rw-r--r--src/ngResource/resource.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ngResource/resource.js b/src/ngResource/resource.js
index 8874bbec..006f3d37 100644
--- a/src/ngResource/resource.js
+++ b/src/ngResource/resource.js
@@ -90,7 +90,7 @@ function shallowClearAndCopy(src, dst) {
* when a param value needs to be obtained for a request (unless the param was overridden).
*
* Each key value in the parameter object is first bound to url template if present and then any
- * excess keys are appended to the url seapph query after the `?`.
+ * excess keys are appended to the url search query after the `?`.
*
* Given a template `/path/:verb` and parameter `{verb:'greet', salutation:'Hello'}` results in
* URL `/path/greet?salutation=Hello`.