diff options
Diffstat (limited to 'modules/taxonomy.module')
-rw-r--r-- | modules/taxonomy.module | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/taxonomy.module b/modules/taxonomy.module index 135241f43..ca59cae25 100644 --- a/modules/taxonomy.module +++ b/modules/taxonomy.module @@ -538,12 +538,12 @@ function _taxonomy_term_children($tid) { } /** - * Try to map a string to existing vocabularies + * Try to map a string to existing vocabularies. * Provide case insensitive and trimmed map so as to * maximize likelihood of successful mapping. * - * @param string $name Name of the vocabulary to search - * @return array array of matching vocabularies, as objects + * @param $name Name of the vocabulary to search + * @return array of matching vocabularies, as objects */ function taxonomy_get_vocabulary_by_name($name) { // LOWER is ANSI SQL-92 @@ -561,8 +561,8 @@ function taxonomy_get_vocabulary_by_name($name) { * Provide case insensitive and trimmed map so as to * maximize likelihood of successful mapping. * - * @param string $name Name of the term to search - * @return array array of matching terms, as objects + * @param name Name of the term to search + * @return rray of matching terms, as objects */ function taxonomy_get_term_by_name($name) { // LOWER is ANSI SQL-92 |