diff --git a/core/lib/Drupal/Core/Entity/RevisionableInterface.php b/core/lib/Drupal/Core/Entity/RevisionableInterface.php index 787d7ed547..5b33fad15a 100644 --- a/core/lib/Drupal/Core/Entity/RevisionableInterface.php +++ b/core/lib/Drupal/Core/Entity/RevisionableInterface.php @@ -5,10 +5,9 @@ /** * Provides methods for an entity to support revisions. * - * Note: one MUST NOT use this interface in conditional logic, because it does - * not indicate whether an entity type is revisionable. All content entity types - * implement this interface, but not all of them are revisionable. To detect - * whether an entity type is revisionable in conditional logic, use + * Classes implementing this interface do not necessarily support revisions. + * + * To detect whether an entity type supports revisions, call * EntityTypeInterface::isRevisionable(). * * @see \Drupal\Core\Entity\EntityTypeInterface::isRevisionable()