From 95f406b55513b2874ef67c416ceecf93867fab0a Mon Sep 17 00:00:00 2001 From: Edward Badel Date: Sun, 16 Jan 2022 13:17:13 -0500 Subject: [PATCH] updated comments --- src/js/mods/mod_interface.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/mods/mod_interface.js b/src/js/mods/mod_interface.js index ccdde710..3d16fa21 100644 --- a/src/js/mods/mod_interface.js +++ b/src/js/mods/mod_interface.js @@ -402,7 +402,7 @@ export class ModInterface { } /** - * Patches a method on a given class + * Runs before a method on a given class * @template {constructable} C the class * @template {C["prototype"]} P the prototype of said class * @template {keyof P} M the name of the method we are overriding @@ -421,7 +421,7 @@ export class ModInterface { } /** - * Patches a method on a given class + * Runs after a method on a given class * @template {constructable} C the class * @template {C["prototype"]} P the prototype of said class * @template {keyof P} M the name of the method we are overriding