Closed
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' }