aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarko Bonaci2013-10-08 21:10:42 +0200
committerPete Bacon Darwin2013-10-09 11:30:22 +0100
commitfe65932404f518ff41e98a0fd5158c8c26a666f3 (patch)
tree0720eca85a6d64d6a8d441d5e02968f6d77598c6
parentf031430a6ff054e3ea4d25a19ccbccef50642cff (diff)
downloadangular.js-fe65932404f518ff41e98a0fd5158c8c26a666f3.tar.bz2
docs(tutorial/step11): correct Jasmine Matcher link
Link http://pivotal.github.com/jasmine/jsdoc/symbols/jasmine.Matchers.html is no longer valid. Closes #4329
-rw-r--r--docs/content/tutorial/step_11.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/tutorial/step_11.ngdoc b/docs/content/tutorial/step_11.ngdoc
index 2b3210ee..fcc0ffe0 100644
--- a/docs/content/tutorial/step_11.ngdoc
+++ b/docs/content/tutorial/step_11.ngdoc
@@ -129,7 +129,7 @@ The {@link api/ngResource.$resource $resource} service augments the response obj
with methods for updating and deleting the resource. If we were to use the standard `toEqual`
matcher, our tests would fail because the test values would not match the responses exactly. To
solve the problem, we use a newly-defined `toEqualData` {@link
-http://pivotal.github.com/jasmine/jsdoc/symbols/jasmine.Matchers.html Jasmine matcher}. When the
+https://github.com/pivotal/jasmine/wiki/Matchers Jasmine matcher}. When the
`toEqualData` matcher compares two objects, it takes only object properties into account and
ignores methods.