diff --git a/bean.api.php b/bean.api.php
index 6a4c692..2e358cf 100644
--- a/bean.api.php
+++ b/bean.api.php
@@ -25,18 +25,18 @@ function hook_bean_types() {
   $plugins['plugin_key'] = array(
     'label' => t('Title'),
     'description' => t('Description'),
-    // This is optional.  Set it to TRUE if you do not want the plugin to be 
+    // This is optional. Set it to TRUE if you do not want the plugin to be
     // displayed in the UI.
     'abstract' => FALSE,
     'handler' => array(
       'class' => 'ClassName',
       'parent' => 'bean',
+      // This should be pointing to the path of your custom bean plugin module.
+      'path' => drupal_get_path('module', 'example_bean') . '/plugins',
+      // Class files should be named accordingly in order to support ctools
+      // autoloading procedures.
+      'file' => 'ClassName.class.php',
     ),
-    // This should be pointing to the path of your custom bean plugin module.
-    'path' => drupal_get_path('module', 'example_bean') . '/plugins',
-    // Class files should be named accordingly in order to support ctools
-    // autoloading procedures.
-    'file' => 'ClassName.class.php',
   );
   return $plugins;
 }
