@@ -27,11 +27,11 @@ static PatchManager()
2727 /// <remarks>
2828 /// When a method is to be patched, this resolver event is called once on the method to determine which
2929 /// <see cref="MethodPatcher"/> backend to use in order to patch the method.
30- /// To make Harmony use the specified backend, set <see cref="PatcherResolverEeventArgs .MethodPatcher"/> to an
30+ /// To make Harmony use the specified backend, set <see cref="PatcherResolverEventArgs .MethodPatcher"/> to an
3131 /// instance of the method patcher backend to use.
3232 /// </remarks>
3333 ///
34- public static event EventHandler < PatcherResolverEeventArgs > ResolvePatcher ;
34+ public static event EventHandler < PatcherResolverEventArgs > ResolvePatcher ;
3535
3636 /// <summary>
3737 /// Creates or gets an existing instance of <see cref="MethodPatcher"/> that handles patching the method.
@@ -46,7 +46,7 @@ public static MethodPatcher GetMethodPatcher(this MethodBase methodBase)
4646 {
4747 if ( MethodPatchers . TryGetValue ( methodBase , out var methodPatcher ) )
4848 return methodPatcher ;
49- var args = new PatcherResolverEeventArgs { Original = methodBase } ;
49+ var args = new PatcherResolverEventArgs { Original = methodBase } ;
5050 ResolvePatcher ? . Invoke ( null , args ) ;
5151 if ( args . MethodPatcher == null )
5252 throw new NullReferenceException ( $ "No suitable patcher found for { methodBase . FullDescription ( ) } ") ;
@@ -106,7 +106,7 @@ public static void ClearAllPatcherResolvers()
106106 /// Patcher resolve event arguments.
107107 /// </summary>
108108 ///
109- public class PatcherResolverEeventArgs : EventArgs
109+ public class PatcherResolverEventArgs : EventArgs
110110 {
111111 /// <summary>
112112 /// Original method that is to be patched.
0 commit comments