diff --git a/core/lib/Drupal/Core/Entity/Entity.php b/core/lib/Drupal/Core/Entity/Entity.php
index 8164d7c1a3f1547a7b95ebc9a56eb4e604367f9f..b49f3d48c451ccfba6fa262d92b974883f2e5a80 100644
--- a/core/lib/Drupal/Core/Entity/Entity.php
+++ b/core/lib/Drupal/Core/Entity/Entity.php
@@ -320,11 +320,6 @@ protected function urlRouteParameters($rel) {
 
   /**
    * {@inheritdoc}
-   *
-   * Returns a list of URI relationships supported by this entity.
-   *
-   * @return array
-   *   An array of link relationships supported by this entity.
    */
   public function uriRelationships() {
     return array_keys($this->linkTemplates());
@@ -497,9 +492,6 @@ public function getCacheMaxAge() {
 
   /**
    * {@inheritdoc}
-   *
-   * @return static|null
-   *   The entity object or NULL if there is no entity with the given ID.
    */
   public static function load($id) {
     $entity_manager = \Drupal::entityManager();
@@ -508,10 +500,6 @@ public static function load($id) {
 
   /**
    * {@inheritdoc}
-   *
-   * @return static[]
-   *   An array of entity objects indexed by their IDs. Returns an empty array
-   *   if no matching entities are found.
    */
   public static function loadMultiple(array $ids = NULL) {
     $entity_manager = \Drupal::entityManager();
@@ -520,9 +508,6 @@ public static function loadMultiple(array $ids = NULL) {
 
   /**
    * {@inheritdoc}
-   *
-   * @return static
-   *   The entity object.
    */
   public static function create(array $values = array()) {
     $entity_manager = \Drupal::entityManager();