From 6bd790101126ae20e57eec7bcd3a753a6a616210 Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Wed, 15 Apr 2020 16:33:57 -0400 Subject: [PATCH] Fix issue processwire/processwire-issues#1122 --- wire/core/Module.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wire/core/Module.php b/wire/core/Module.php index 02d004a4..e5638a4a 100644 --- a/wire/core/Module.php +++ b/wire/core/Module.php @@ -332,7 +332,7 @@ * to support the module from one version to another. The previous known version ($fromVersion) and new * version ($toVersion) are provided as arguments. * - * If implemented, uninstall() methods typically are defined hookable as `public function ___upgrade(...)`. + * If implemented, upgrade() methods typically are defined hookable as `public function ___upgrade(...)`. * If the upgrade cannot proceed for some reason, this method should throw a `WireException`. * *