docs(tutorial/step11): correct Jasmine Matcher link

Link http://pivotal.github.com/jasmine/jsdoc/symbols/jasmine.Matchers.html
is no longer valid.

Closes #4329
This commit is contained in:
Marko Bonaci 2013-10-08 21:10:42 +02:00 committed by Pete Bacon Darwin
parent 3374e35953
commit 8469779a8e

View file

@ -135,7 +135,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` 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 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 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 `toEqualData` matcher compares two objects, it takes only object properties into account and
ignores methods. ignores methods.