From f7597643cfed1b5b942c67a7909efe8dbade07ec Mon Sep 17 00:00:00 2001
From: Lars Toomre <ltoomre@23809.no-reply.drupal.org>
Date: Mon, 8 Oct 2012 22:23:04 -0400
Subject: [PATCH] Issue 1807002-1 by Lars Toomre: Add type hinting to examples
 in taxonomy.api.php file.

---
 core/modules/taxonomy/taxonomy.api.php |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/core/modules/taxonomy/taxonomy.api.php b/core/modules/taxonomy/taxonomy.api.php
index 6657624..9cab030 100644
--- a/core/modules/taxonomy/taxonomy.api.php
+++ b/core/modules/taxonomy/taxonomy.api.php
@@ -231,11 +231,11 @@ function hook_taxonomy_term_delete(Drupal\taxonomy\Term $term) {
  * will be called after hook_view(). The structure of $term->content is a
  * renderable array as expected by drupal_render().
  *
- * @param $term
+ * @param object $term
  *   The term that is being assembled for rendering.
- * @param $view_mode
+ * @param string $view_mode
  *   The $view_mode parameter from taxonomy_term_view().
- * @param $langcode
+ * @param string $langcode
  *   The language code used for rendering.
  *
  * @see hook_entity_view()
@@ -261,7 +261,7 @@ function hook_taxonomy_term_view($term, $view_mode, $langcode) {
  * hook_preprocess_HOOK() for taxonomy-term.tpl.php. See drupal_render() and
  * theme() documentation respectively for details.
  *
- * @param $build
+ * @param array $build
  *   A renderable array representing the taxonomy term content.
  * @param Drupal\taxonomy\Term $term
  *   The taxonomy term being rendered.
-- 
1.7.6.msysgit.0

