You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classMyClass{/** * Documentation for aMethod() * * This is OK: {@link anotherMethod} * * @param aParam But this produces an error: {@link anotherMethod} */aMethod(aParam: number){}/** * Documentation for anotherMethod() */anotherMethod(){}}
Environment
Typedoc version: 0.23.10
TypeScript version: 4.7.3
Node.js version: v16.14.0
OS: macOS 12.2.1
The text was updated successfully, but these errors were encountered:
Search terms
link param
Expected Behavior
Linking (via
@link
) to a method by name from an@param
of another method in the same class should work and not cause an error.Actual Behavior
This error is produced:
VSCode properly handles the link within the quick info UI
Steps to reproduce the bug
Repro PR:
Environment
The text was updated successfully, but these errors were encountered: