build(aio): remove unused @linkDocs alias for @link jsdoc tag (#24000)

PR Close #24000
This commit is contained in:
Pete Bacon Darwin
2018-06-13 16:47:40 -07:00
committed by Miško Hevery
parent 38a0d1fac5
commit ccb19fea68
2 changed files with 0 additions and 2 deletions
@@ -14,7 +14,6 @@ var INLINE_LINK = /(\S+)(?:\s+([\s\S]+))?/;
module.exports = function linkInlineTagDef(getLinkInfo, createDocMessage, log) {
return {
name: 'link',
aliases: ['linkDocs'],
failOnBadLink: false,
description:
'Process inline link tags (of the form {@link some/uri Some Title}), replacing them with HTML anchors',
@@ -19,7 +19,6 @@ describe('link inline-tag-def', function() {
it('should be available as a service', () => {
expect(tag).toBeDefined();
expect(tag.name).toEqual('link');
expect(tag.aliases).toEqual(['linkDocs']);
});
it('should call getLinkInfo', () => {