From 507396740a6e586554a9069e81cdf14995bf2ceb Mon Sep 17 00:00:00 2001 From: Jennifer Hodgdon Date: Thu, 19 Jul 2012 16:11:59 -0700 Subject: [PATCH] Issue #1689426 by mjonesdinero, ronan.orb: Fix return value docs for taxonomy_term_load function --- core/modules/taxonomy/taxonomy.module | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/modules/taxonomy/taxonomy.module b/core/modules/taxonomy/taxonomy.module index ddc84fe576c..f55ac1d991b 100644 --- a/core/modules/taxonomy/taxonomy.module +++ b/core/modules/taxonomy/taxonomy.module @@ -1024,7 +1024,8 @@ function taxonomy_vocabulary_machine_name_load($name) { * A term's ID * * @return Drupal\taxonomy\Term|false - * A taxonomy term entity. Results are statically cached. + * A taxonomy term entity, or FALSE if the term was not found. Results are + * statically cached. */ function taxonomy_term_load($tid) { if (!is_numeric($tid)) {