Skip to content

Commit

Permalink
Properties pointing to themself in the '<see>' tag (#50896)
Browse files Browse the repository at this point in the history
Properties with the same name as the returned type point to themself in the '<see>' tag instead of the actual type.
  • Loading branch information
piotrstenke authored Feb 3, 2021
1 parent dfc8d7f commit 230d0d0
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ internal GeneratorExecutionContext(Compilation compilation, ParseOptions parseOp
}

/// <summary>
/// Get the current <see cref="Compilation"/> at the time of execution.
/// Get the current <see cref="CodeAnalysis.Compilation"/> at the time of execution.
/// </summary>
/// <remarks>
/// This compilation contains only the user supplied code; other generated code is not
Expand All @@ -43,7 +43,7 @@ internal GeneratorExecutionContext(Compilation compilation, ParseOptions parseOp
public Compilation Compilation { get; }

/// <summary>
/// Get the <see cref="ParseOptions"/> that will be used to parse any added sources.
/// Get the <see cref="CodeAnalysis.ParseOptions"/> that will be used to parse any added sources.
/// </summary>
public ParseOptions ParseOptions { get; }

Expand All @@ -68,7 +68,7 @@ internal GeneratorExecutionContext(Compilation compilation, ParseOptions parseOp
public ISyntaxContextReceiver? SyntaxContextReceiver { get; }

/// <summary>
/// A <see cref="CancellationToken"/> that can be checked to see if the generation should be cancelled.
/// A <see cref="System.Threading.CancellationToken"/> that can be checked to see if the generation should be cancelled.
/// </summary>
public CancellationToken CancellationToken { get; }

Expand Down Expand Up @@ -111,7 +111,7 @@ internal GeneratorInitializationContext(CancellationToken cancellationToken = de
}

/// <summary>
/// A <see cref="CancellationToken"/> that can be checked to see if the initialization should be cancelled.
/// A <see cref="System.Threading.CancellationToken"/> that can be checked to see if the initialization should be cancelled.
/// </summary>
public CancellationToken CancellationToken { get; }

Expand Down Expand Up @@ -213,7 +213,7 @@ internal GeneratorSyntaxContext(SyntaxNode node, SemanticModel semanticModel)
public SyntaxNode Node { get; }

/// <summary>
/// The <see cref="SemanticModel" /> that can be queried to obtain information about <see cref="Node"/>.
/// The <see cref="CodeAnalysis.SemanticModel" /> that can be queried to obtain information about <see cref="Node"/>.
/// </summary>
public SemanticModel SemanticModel { get; }
}
Expand All @@ -232,7 +232,7 @@ internal GeneratorPostInitializationContext(AdditionalSourcesCollection addition
}

/// <summary>
/// A <see cref="CancellationToken"/> that can be checked to see if the PostInitialization should be cancelled.
/// A <see cref="System.Threading.CancellationToken"/> that can be checked to see if the PostInitialization should be cancelled.
/// </summary>
public CancellationToken CancellationToken { get; }

Expand Down

0 comments on commit 230d0d0

Please sign in to comment.