-
Notifications
You must be signed in to change notification settings - Fork 13k
Closed
Labels
BugA bug in TypeScriptA bug in TypeScriptFix AvailableA PR has been opened for this issueA PR has been opened for this issue
Milestone
Description
Bug Report
🔎 Search Terms
@see
, JsDocTags
🕗 Version & Regression Information
This changed between 3.9 and 4.1.
💻 Code
/** @see http://lmgtfy.com */
export class Foo {}
🙁 Actual behavior
Consider the exported symbol Foo
above... When calling getJsDocTags()
on that, the result includes:
{ text: 'http ://lmgtfy.com', name: 'see' }
// ^-- spurious space
🙂 Expected behavior
Expected the @see
tag's text to be represented as-is:
{ text: 'http://lmgtfy.com', name: 'see' }
Metadata
Metadata
Assignees
Labels
BugA bug in TypeScriptA bug in TypeScriptFix AvailableA PR has been opened for this issueA PR has been opened for this issue