Skip to content

Commit

Permalink
Improved some summary text
Browse files Browse the repository at this point in the history
Signed-off-by: Manuel Menegazzo <manuel.menegazzo@outlook.com>
  • Loading branch information
m3nax committed Sep 4, 2024
1 parent 66bf943 commit 30bb460
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Dapr.Actors.Generators/ActorClientGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ static ActorClientDescriptor CreateActorClientDescriptor(
/// </summary>
/// <param name="context">Context passed from the source generator when it has registered an output.</param>
/// <param name="descriptor">Descriptor of actor client to generate.</param>
/// <exception cref="InvalidOperationException">Throws when assembly doesn't one or more required symbols.</exception>
/// <exception cref="InvalidOperationException">Throws when one or more required symbols assembly are missing.</exception>
static void GenerateActorClientCode(SourceProductionContext context, ActorClientDescriptor descriptor)
{
try
Expand Down Expand Up @@ -198,9 +198,9 @@ static void GenerateActorClientCode(SourceProductionContext context, ActorClient
/// MethodSymbol extracted from the actor interface representing the method to generate.
/// </param>
/// <param name="generateActorClientAttributeSymbol">
/// ActorMethodAttribute symbol used to extract generation the original actor method to use when making runtime calls.
/// ActorMethodAttribute symbol used to extract the original actor method name to use when making runtime calls.
/// </param>
/// <param name="cancellationTokenSymbol">Used to check search the position of optional cancellationToken.</param>
/// <param name="cancellationTokenSymbol">Symbol used to search the position of cancellationToken between method parameters.</param>
/// <returns>Returns a <see cref="MethodDeclarationSyntax"/> of the generated method.</returns>
private static MethodDeclarationSyntax GenerateMethodImplementation(
IMethodSymbol method,
Expand Down

0 comments on commit 30bb460

Please sign in to comment.