Open rjgotten opened 8 years ago
Assume given a closed-over generic type, such as @constructor {Foo.Bar} Foo<Bar>
@constructor {Foo.Bar} Foo<Bar>
When said type is used in a signature parameter or return value such as @return {Foo.Bar}
@return {Foo.Bar}
then the <Bar> portion will not be properly escaped as text by the makeTypesString helper and will output an unclosed <Bar> HTML tag instead.
<Bar>
makeTypesString
Assume given a closed-over generic type, such as
@constructor {Foo.Bar} Foo<Bar>
When said type is used in a signature parameter or return value such as
@return {Foo.Bar}
then the
<Bar>
portion will not be properly escaped as text by themakeTypesString
helper and will output an unclosed<Bar>
HTML tag instead.