diff --git a/core/lib/Drupal/Core/Entity/EntityInterface.php b/core/lib/Drupal/Core/Entity/EntityInterface.php
index ae436bb..7c64950 100644
--- a/core/lib/Drupal/Core/Entity/EntityInterface.php
+++ b/core/lib/Drupal/Core/Entity/EntityInterface.php
@@ -339,7 +339,10 @@ public function postSave(EntityStorageInterface $storage, $update = TRUE);
   public static function preCreate(EntityStorageInterface $storage, array &$values);
 
   /**
-   * Acts on an entity after it is created but before hooks are invoked.
+   * Acts on an entity after create(), but before the entity is saved
+   * and hooks are invoked. postCreate() does not save the entity to db.
+   *
+   * See the @link entity_crud Entity CRUD topic @endlink for more information.
    *
    * @param \Drupal\Core\Entity\EntityStorageInterface $storage
    *   The entity storage object.
