diff --git a/form_decorator.info.yml b/form_decorator.info.yml
index b51810487b2ae11d3750ce408d40680d5a365c98..0e5c5d5f0d47d4b48fafa24116a55a8e744ed03f 100644
--- a/form_decorator.info.yml
+++ b/form_decorator.info.yml
@@ -1,5 +1,5 @@
 name: 'Form decorator'
 type: module
 description: 'Allow to decorate forms'
-package: Custom
+package: Forms
 core_version_requirement: ^10 || ^11
diff --git a/modules/form_decorator_example/form_decorator_example.info.yml b/modules/form_decorator_example/form_decorator_example.info.yml
index b38eeb67297098b716210a43a9dd51affc96a740..0c77f437e58090d45783f21aac876629a9312cba 100644
--- a/modules/form_decorator_example/form_decorator_example.info.yml
+++ b/modules/form_decorator_example/form_decorator_example.info.yml
@@ -1,7 +1,7 @@
 name: 'Form decorator example'
 type: module
-description: 'Allow to decorate forms'
-package: Custom
+description: 'Provides some example form decorators'
+package: Forms
 core_version_requirement: ^10 || ^11
 dependencies:
   - form_decorator:form_decorator
diff --git a/src/FormDecoratorPluginManager.php b/src/FormDecoratorPluginManager.php
index a0d8391650f72f13e3d3e487b7ac562d618a16f2..8ffca4ce83dbbd206cf3f739954d72c24952f7f0 100644
--- a/src/FormDecoratorPluginManager.php
+++ b/src/FormDecoratorPluginManager.php
@@ -15,7 +15,7 @@ use Drupal\form_decorator\Annotation\FormDecorator;
 final class FormDecoratorPluginManager extends DefaultPluginManager {
 
   /**
-   * Constructs the object.
+   * Constructs a new \Drupal\form_decorator\FormDecoratorPluginManager object.
    */
   public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
     parent::__construct('FormDecorator', $namespaces, $module_handler, FormDecoratorInterface::class, FormDecorator::class);