Skip to content

Commit

Permalink
fix stream name typeo
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAtomicOption committed Jul 6, 2023
1 parent 6405ea5 commit 11420b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RazorEngineCore/IRazorEngineCompilationOptionsBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ public interface IRazorEngineCompilationOptionsBuilder
void AddMetadataReference(MetadataReference reference);
void AddUsing(string namespaceName);
void Inherits(Type type);
void GeneratePdbSteram(bool flag);
void GeneratePdbStream(bool flag);
}
}
2 changes: 1 addition & 1 deletion RazorEngineCore/RazorEngineCompilationOptionsBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ private string RenderDeclaringType(Type type)
return parent + "." + type.Name;
}

public void GeneratePdbSteram(bool flag)
public void GeneratePdbStream(bool flag)
{
this.Options.GeneratePdbStream = flag;
}
Expand Down

0 comments on commit 11420b9

Please sign in to comment.