From fd1d891fd37cf28aae7ea005118eaac312a43f60 Mon Sep 17 00:00:00 2001
From: goz <goz@226961.no-reply.drupal.org>
Date: Thu, 21 Jul 2016 10:02:25 +0200
Subject: [PATCH] Issue #2770375 by GoZ: "Facat" typo error

---
 facetapi_bonus.api.php | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/facetapi_bonus.api.php b/facetapi_bonus.api.php
index 28d9bf8..5b6576d 100644
--- a/facetapi_bonus.api.php
+++ b/facetapi_bonus.api.php
@@ -11,14 +11,15 @@
  * @param array $build
  *  An array of facet items you can rewrite.
  * @param $settings
- *  Contains the facet filter settings as context to determine the facet and the search context.
+ *  Contains the facet filter settings as context to determine the facet and the
+ * search context.
  */
 function HOOK_facet_items_alter(array &$build, &$settings) {
   // We're checking for our "Facet" and if the FacetAPI realm is "block".
   // For further details about FacetAPI realms, see: hook_facetapi_realm_info().
   if ($settings->facet == "YOUR_FACET_NAME" && $settings->realm == 'block') {
 
-    // For each facat item, just rewrite its' markup.
+    // For each facet item, just rewrite its' markup.
     // For Taxonomy-based Facets, the item $key is (usually) the TermID.
     foreach($build as $key => $item) {
       $build[$key]["#markup"] = drupal_strtoupper($item["#markup"]);
-- 
2.8.1

