Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksey Kliger (λgeek) <alklig@microsoft.com>2019-08-02 23:31:06 +0300
committerZoltan Varga <vargaz@gmail.com>2019-08-02 23:31:06 +0300
commit713df6a9c48c2c4da4037b4bbad43244fbcc505f (patch)
treea69c444c1fe974a7c1bc7ec97a68366b81d18702 /netcore
parent68181633830efecd1c14f96024272b1f4cca7915 (diff)
[netcore] Fix comments in ALC to use Mono terminology (#15998)
Diffstat (limited to 'netcore')
-rw-r--r--netcore/System.Private.CoreLib/src/System.Runtime.Loader/AssemblyLoadContext.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/netcore/System.Private.CoreLib/src/System.Runtime.Loader/AssemblyLoadContext.cs b/netcore/System.Private.CoreLib/src/System.Runtime.Loader/AssemblyLoadContext.cs
index 7c1d7a489ce..b8586145cbd 100644
--- a/netcore/System.Private.CoreLib/src/System.Runtime.Loader/AssemblyLoadContext.cs
+++ b/netcore/System.Private.CoreLib/src/System.Runtime.Loader/AssemblyLoadContext.cs
@@ -122,16 +122,14 @@ namespace System.Runtime.Loader
}
// Invoked by Mono to resolve using the Resolving event after
- // trying the Load overried and TPA load context without
+ // trying the Load override and default load context without
// success.
private static Assembly? MonoResolveUsingResolvingEvent (IntPtr gchALC, string assemblyName)
{
return ResolveUsingResolvingEvent (gchALC, new AssemblyName (assemblyName));
}
- // Invoked by Mono to resolve using the Resolving event after
- // trying the Load overried and TPA load context without
- // success.
+ // Invoked by Mono to resolve requests to load satellite assemblies.
private static Assembly? MonoResolveUsingResolveSatelliteAssembly (IntPtr gchALC, string assemblyName)
{
return ResolveSatelliteAssembly (gchALC, new AssemblyName (assemblyName));