diff --git includes/common.inc includes/common.inc
index 62c5d22..23ae400 100644
--- includes/common.inc
+++ includes/common.inc
@@ -7125,13 +7125,16 @@ function entity_create_stub_entity($entity_type, $ids) {
  * @see hook_entity_info()
  * @see DrupalEntityControllerInterface
  * @see DrupalDefaultEntityController
+ * @see EntityFieldQuery
  *
  * @param $entity_type
  *   The entity type to load, e.g. node or user.
  * @param $ids
  *   An array of entity IDs, or FALSE to load all entities.
  * @param $conditions
- *   An array of conditions in the form 'field' => $value.
+ *   (deprecated) An array of conditions in the form of 'field' => $value.
+ *   Use EntityFieldQuery instead to retrieve a list of entity IDs loadable by
+ *   this function.
  * @param $reset
  *   Whether to reset the internal cache for the requested entity type.
  *
diff --git includes/file.inc includes/file.inc
index 0eb9728..16a45cd 100644
--- includes/file.inc
+++ includes/file.inc
@@ -519,15 +519,18 @@ function file_create_htaccess($directory, $private = TRUE) {
  * @param $fids
  *   An array of file IDs.
  * @param $conditions
- *   An array of conditions to match against the {file_managed} table.
- *   These should be supplied in the form array('field_name' =>
- *   'field_value').
+ *   (deprecated) An array of conditions to match against the {file_managed}
+ *   table in the form of 'field' => $value.
+ *   Use EntityFieldQuery instead to retrieve a list of entity IDs loadable by
+ *   this function.
  *
  * @return
  *   An array of file objects, indexed by fid.
  *
  * @see hook_file_load()
  * @see file_load()
+ * @see entity_load()
+ * @see EntityFieldQuery
  */
 function file_load_multiple($fids = array(), $conditions = array()) {
   return entity_load('file', $fids, $conditions);
diff --git modules/comment/comment.module modules/comment/comment.module
index 52549f9..4a9790d 100644
--- modules/comment/comment.module
+++ modules/comment/comment.module
@@ -1612,10 +1612,16 @@ function comment_delete_multiple($cids) {
  * @param $cids
  *   An array of comment IDs.
  * @param $conditions
- *   An array of conditions to match against the {comments} table. These
- *   should be supplied in the form array('field_name' => 'field_value').
+ *   (deprecated) An array of conditions to match against the {comments} table
+ *   in the form of 'field' => $value.
+ *   Use EntityFieldQuery instead to retrieve a list of entity IDs loadable by
+ *   this function.
+ *
  * @return
- *  An array of comment objects, indexed by comment ID.
+ *   An array of comment objects, indexed by comment ID.
+ *
+ * @see entity_load()
+ * @see EntityFieldQuery
  */
 function comment_load_multiple($cids = array(), $conditions = array()) {
   return entity_load('comment', $cids, $conditions);
diff --git modules/node/node.module modules/node/node.module
index 525412d..429054a 100644
--- modules/node/node.module
+++ modules/node/node.module
@@ -875,11 +875,15 @@ function node_invoke($node, $hook, $a2 = NULL, $a3 = NULL, $a4 = NULL) {
  * database access if loaded again during the same page request.
  *
  * @see entity_load()
+ * @see EntityFieldQuery
  *
  * @param $nids
  *   An array of node IDs.
  * @param $conditions
- *   An array of conditions on the {node} table in the form 'field' => $value.
+ *   (deprecated) An array of conditions to match against the {node} table in
+ *   the form of 'field' => $value.
+ *   Use EntityFieldQuery instead to retrieve a list of entity IDs loadable by
+ *   this function.
  * @param $reset
  *   Whether to reset the internal node_load cache.
  *
diff --git modules/taxonomy/taxonomy.module modules/taxonomy/taxonomy.module
index 1e0cf45..f6a3bfe 100644
--- modules/taxonomy/taxonomy.module
+++ modules/taxonomy/taxonomy.module
@@ -1038,14 +1038,18 @@ class TaxonomyVocabularyController extends DrupalDefaultEntityController {
  * database access if loaded again during the same page request.
  *
  * @see entity_load()
+ * @see EntityFieldQuery
  *
  * @param $tids
- *  An array of taxonomy term IDs.
+ *   An array of taxonomy term IDs.
  * @param $conditions
- *  An array of conditions to add to the query.
+ *   (deprecated) An array of conditions to match against the {taxonomy_term}
+ *   table in the form of 'field' => $value.
+ *   Use EntityFieldQuery instead to retrieve a list of entity IDs loadable by
+ *   this function.
  *
  * @return
- *  An array of term objects, indexed by tid.
+ *   An array of term objects, indexed by tid.
  */
 function taxonomy_term_load_multiple($tids = array(), $conditions = array()) {
   return entity_load('taxonomy_term', $tids, $conditions);
diff --git modules/user/user.module modules/user/user.module
index c0372e6..a541260 100644
--- modules/user/user.module
+++ modules/user/user.module
@@ -235,8 +235,10 @@ function user_external_load($authname) {
  * @param $uids
  *   An array of user IDs.
  * @param $conditions
- *   An array of conditions to match against the {users} table. These
- *   should be supplied in the form array('field_name' => 'field_value').
+ *   (deprecated) An array of conditions to match against the {users} table in
+ *   the form of 'field' => $value.
+ *   Use EntityFieldQuery instead to retrieve a list of entity IDs loadable by
+ *   this function.
  * @param $reset
  *   A boolean indicating that the internal cache should be reset. Use this if
  *   loading a user object which has been altered during the page request.
@@ -247,6 +249,7 @@ function user_external_load($authname) {
  * @see user_load()
  * @see user_load_by_mail()
  * @see user_load_by_name()
+ * @see EntityFieldQuery
  */
 function user_load_multiple($uids = array(), $conditions = array(), $reset = FALSE) {
   return entity_load('user', $uids, $conditions, $reset);
