diff --git a/src/libraries/System.Private.CoreLib/src/System/Gen2GcCallback.cs b/src/libraries/System.Private.CoreLib/src/System/Gen2GcCallback.cs index fbcbcc27aece52..7b1b6ba82dbe38 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Gen2GcCallback.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Gen2GcCallback.cs @@ -34,7 +34,7 @@ private Gen2GcCallback(Func callback, object targetObj) /// public static void Register(Func callback) { - // Create a unreachable object that remembers the callback function and target object. + // Create an unreachable object that remembers the callback function and target object. new Gen2GcCallback(callback); } @@ -47,7 +47,7 @@ public static void Register(Func callback) /// public static void Register(Func callback, object targetObj) { - // Create a unreachable object that remembers the callback function and target object. + // Create an unreachable object that remembers the callback function and target object. new Gen2GcCallback(callback, targetObj); }