diff --git a/core/lib/Drupal/Core/Entity/EntityTypeBundleInfoInterface.php b/core/lib/Drupal/Core/Entity/EntityTypeBundleInfoInterface.php
index 4425d28..bf166f8 100644
--- a/core/lib/Drupal/Core/Entity/EntityTypeBundleInfoInterface.php
+++ b/core/lib/Drupal/Core/Entity/EntityTypeBundleInfoInterface.php
@@ -11,7 +11,10 @@
    * Get the bundle info of all entity types.
    *
    * @return array
-   *   An array of all bundle information.
+   *  An array of bundle information where the outer array is keyed by entity
+   *  type. The next level is keyed by the bundle name. The inner arrays are 
+   *  associative arrays of the bundle information, such as the label for
+   *  the bundle.
    */
   public function getAllBundleInfo();
 
@@ -22,7 +25,8 @@ public function getAllBundleInfo();
    *   The entity type.
    *
    * @return array
-   *   Returns the bundle information for the specified entity type.
+   *  An array of bundle information where the outer array is keyed by the 
+   *  bundle name, or the entity type name if the entity does not have bundles.
    */
   public function getBundleInfo($entity_type);
 
