From 52528958da70039f11a2f117625404704b48836b Mon Sep 17 00:00:00 2001 From: mathematicalcoffee Date: Fri, 15 Feb 2013 12:15:59 +1000 Subject: [PATCH] @returns: fixed typo in test description --- test/specs/tags/returnstag.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/specs/tags/returnstag.js b/test/specs/tags/returnstag.js index 9b3750c9..a401ae48 100644 --- a/test/specs/tags/returnstag.js +++ b/test/specs/tags/returnstag.js @@ -10,9 +10,9 @@ describe("@returns tag", function() { expect(find.returns[0].description).toEqual('The names of the found item(s).'); }); - it('When a symbol has an @param tag with only a type and name, the doclet has a returns array property that includes that param.', function() { + it('When a symbol has an @returns tag with only a description, the doclet has a returns array property that includes that return.', function() { expect(typeof bind.returns).toEqual('object'); expect(bind.returns.length).toEqual(1); expect(bind.returns[0].description).toEqual('The binding id.'); }); -}); \ No newline at end of file +});