diff --git a/metatag.api.php b/metatag.api.php
index 0500f16..cc36863 100644
--- a/metatag.api.php
+++ b/metatag.api.php
@@ -5,7 +5,7 @@
  */
 
 /**
- * To enable Metatag support in custom entities, add 'metatag' => TRUE to the
+ * To enable Metatag support in custom entities, add 'metatags' => TRUE to the
  * entity definition in hook_entity_info(), e.g.:
  * 
  * /**
@@ -20,7 +20,7 @@
  *     'base table' => 'entity_example_basic',
  *     'uri callback' => 'entity_example_basic_uri',
  *     'fieldable' => TRUE,
- *     'metatag' => TRUE,
+ *     'metatags' => TRUE,
  *     'entity keys' => array(
  *       'id' => 'basic_id' , // The 'id' (basic_id here) is the unique id.
  *       'bundle' => 'bundle_type' // Bundle will be determined by the 'bundle_type' field
@@ -51,12 +51,12 @@
  *
  * The definition of each bundle may be handled separately, thus support may be
  * disabled for the entity as a whole but enabled for individual bundles. This
- * is handled via the 'metatag' value on the bundle definition, e.g.:
+ * is handled via the 'metatags' value on the bundle definition, e.g.:
  *
  *     'bundles' => array(
  *       'first_example_bundle' => array(
  *         'label' => 'First example bundle',
- *         'metatag' => TRUE,
+ *         'metatags' => TRUE,
  *         'admin' => array(
  *           'path' => 'admin/structure/entity_example_basic/manage',
  *           'access arguments' => array('administer entity_example_basic entities'),
