Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in sandbox helper class name #531

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public ITemplateServiceConfiguration CreateConfiguration()
/// A simple sandbox helper to create the <see cref="IRazorEngineService"/>
/// in the new <see cref="AppDomain"/>.
/// </summary>
public class SanboxHelper : CrossAppDomainObject
public class SandboxHelper : CrossAppDomainObject
{
/// <summary>
/// Create the <see cref="IRazorEngineService"/> in the new <see cref="AppDomain"/>.
Expand Down Expand Up @@ -138,11 +138,11 @@ internal IsolatedRazorEngineService(IConfigCreator configCreator, IAppDomainFact

ObjectHandle handle =
Activator.CreateInstanceFrom(
_appDomain, typeof(SanboxHelper).Assembly.ManifestModule.FullyQualifiedName,
typeof(SanboxHelper).FullName
_appDomain, typeof(SandboxHelper).Assembly.ManifestModule.FullyQualifiedName,
typeof(SandboxHelper).FullName
);

using (var helper = (SanboxHelper)handle.Unwrap())
using (var helper = (SandboxHelper)handle.Unwrap())
{
_proxy = helper.CreateEngine(config);
}
Expand Down