Skip to content

Commit

Permalink
Fix typo in EmitStreamSignKind (#36895)
Browse files Browse the repository at this point in the history
  • Loading branch information
fkleuver authored and Neal Gafter committed Jul 15, 2019
1 parent 37eb1d4 commit 223a2fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Compilers/Core/Portable/Compilation.EmitStream.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ internal enum EmitStreamSignKind
/// This form of signing occurs in memory using the <see cref="PEBuilder"/> APIs. This is the default
/// form of signing and will be used when a strong name key is provided in a file on disk.
/// </summary>
SignedWithBulider,
SignedWithBuilder,

/// <summary>
/// This form of signing occurs using the <see cref="IClrStrongName"/> COM APIs. This form of signing
Expand Down
2 changes: 1 addition & 1 deletion src/Compilers/Core/Portable/Compilation/Compilation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2727,7 +2727,7 @@ internal void EnsureAnonymousTypeTemplates(CancellationToken cancellationToken)
try
{
var signKind = IsRealSigned
? (SignUsingBuilder ? EmitStreamSignKind.SignedWithBulider : EmitStreamSignKind.SignedWithFile)
? (SignUsingBuilder ? EmitStreamSignKind.SignedWithBuilder : EmitStreamSignKind.SignedWithFile)
: EmitStreamSignKind.None;
emitPeStream = new EmitStream(peStreamProvider, signKind, Options.StrongNameProvider);
emitMetadataStream = metadataPEStreamProvider == null
Expand Down

0 comments on commit 223a2fc

Please sign in to comment.