File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -419,7 +419,7 @@ namespace ts.SymbolDisplay {
419
419
if ( ! documentation ) {
420
420
documentation = symbol . getDocumentationComment ( ) ;
421
421
if ( documentation . length === 0 && symbol . flags & SymbolFlags . Property ) {
422
- // For some special property access expressions like `experts .foo = foo` or `module.exports.foo = foo`
422
+ // For some special property access expressions like `exports .foo = foo` or `module.exports.foo = foo`
423
423
// there documentation comments might be attached to the right hand side symbol of their declarations.
424
424
// The pattern of such special property access is that the parent symbol is the symbol of the file.
425
425
if ( symbol . parent && forEach ( symbol . parent . declarations , declaration => declaration . kind === SyntaxKind . SourceFile ) ) {
You can’t perform that action at this time.
0 commit comments