From 6893d4313fc9ad95897557a48ca4eaeacee527aa Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 6 Oct 2010 13:39:54 +0000 Subject: [PATCH] - Patch #931352 by LaurentAjdnik: documentation fixes. --- includes/common.inc | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/includes/common.inc b/includes/common.inc index 824e32751f3..e626bb8f133 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -7010,15 +7010,16 @@ function entity_create_stub_entity($entity_type, $ids) { * database access if loaded again during the same page request. * * The actual loading is done through a class that has to implement the - * DrupalEntityController interface. By default, DrupalDefaultEntityController - * is used. Entity types can specify that a different class should be used by - * setting the 'controller class' key in hook_entity_info(). These classes can - * either implement the DrupalEntityController interface, or, most commonly, - * extend the DrupalDefaultEntityController class. See node_entity_info() and - * the NodeController in node.module as an example. + * DrupalEntityControllerInterface interface. By default, + * DrupalDefaultEntityController is used. Entity types can specify that a + * different class should be used by setting the 'controller class' key in + * hook_entity_info(). These classes can either implement the + * DrupalEntityControllerInterface interface, or, most commonly, extend the + * DrupalDefaultEntityController class. See node_entity_info() and the + * NodeController in node.module as an example. * * @see hook_entity_info() - * @see DrupalEntityController + * @see DrupalEntityControllerInterface * @see DrupalDefaultEntityController * * @param $entity_type