Skip to content

Commit

Permalink
Update DerivativesBuilder.cs
Browse files Browse the repository at this point in the history
- Rename parameter
  • Loading branch information
HamletTanyavong committed Oct 27, 2023
1 parent c98d499 commit a819ab8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ public sealed class DerivativesBuilder
private readonly string _assemblyName;
private readonly ImmutableArray<MethodInformation> _methodInformation;

public DerivativesBuilder(Compilation compilationUnitSyntax, ImmutableArray<MethodInformation> methodInformation)
public DerivativesBuilder(Compilation compilation, ImmutableArray<MethodInformation> methodInformation)
{
_assemblyName = compilationUnitSyntax.AssemblyName!;
_assemblyName = compilation.AssemblyName!;
_methodInformation = methodInformation;
}

Expand Down

0 comments on commit a819ab8

Please sign in to comment.