From 6ff91095831508c3075df7520ba8ae0a96e00eab Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Fri, 6 Sep 2024 15:03:44 -0400 Subject: [PATCH] Typo fix in phpdoc of Module.php --- wire/core/Module.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/wire/core/Module.php b/wire/core/Module.php index 411ef428..e3f40727 100644 --- a/wire/core/Module.php +++ b/wire/core/Module.php @@ -270,7 +270,7 @@ * - Singular modules will have their instance active for the entire request after instantiated. * - Non-singular modules return a new instance on every `$modules->get("YourModule")` call. * - Modules that attach hooks are usually singular. - * - Modules that may have multiple instances (like `Inputfield` modules) should _not_be singular. + * - Modules that may have multiple instances (like `Inputfield` modules) should _not_ be singular. * * If you are having trouble deciding whether to make your module singular or not, be sure to read * the documentation below for the `isAutoload()` method, because if your module is 'autoload' then @@ -588,4 +588,3 @@ interface SearchableModule { */ public function search($text, array $options = array()); } -