// Link is generated
/**
* Calculates a suggestion for the region which can be used as input for
* {@link cascadeOverlapAllWindows}. The suggested region is printed to the console and returned
* by this method.
*/
works as expected, while the following will not generate a link, but put literally {@link cascadeOverlapAllWindows} in the output.
// No link generated
/**
* Calculates a suggestion for the region which can be used as input for {@link
* cascadeOverlapAllWindows}. The suggested region is printed to the console and returned by
* this method.
*/
This example
works as expected, while the following will not generate a link, but put literally
{@link cascadeOverlapAllWindows}
in the output.In JSDoc both will generate a correct result.