Open
Description
Hi TSDoc Team!
I couldn't test the very first example on tsdoc.org's site. It generates an error because it starts with a class instead of a comment. Was this the expected behavior?
Thank you for your attention.
export class Statistics {
/**
* Returns the average of two numbers.
*
* @remarks
* This method is part of the {@link core-library#Statistics | Statistics subsystem}.
*
* @param x - The first input number
* @param y - The second input number
* @returns The arithmetic mean of `x` and `y`
*
* @beta
*/
public static getAverage(x: number, y: number): number {
return (x + y) / 2.0;
}
}
(1,1): Expecting a leading "/**"
Best regards,
@cesardddp
Metadata
Metadata
Assignees
Labels
No labels