diff --git a/modules/sms_sendtophone/sms_sendtophone.module b/modules/sms_sendtophone/sms_sendtophone.module
index d4a01e5..c129df4 100644
--- a/modules/sms_sendtophone/sms_sendtophone.module
+++ b/modules/sms_sendtophone/sms_sendtophone.module
@@ -26,7 +26,7 @@ function sms_sendtophone_menu() {
 
   $items['admin/smsframework/sendtophone'] = array(
     'title' => 'Send to phone',
-    'description' => 'Configure send to phone functinality.',
+    'description' => 'Configure send to phone functionality.',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('sms_sendtophone_admin_overview'),
     'access arguments' => array('administer smsframework'),
@@ -178,8 +178,8 @@ function _sms_sendtophone_filter_inline($text, $filter, $format, $langcode, $cac
   foreach ($matches as $match) {
     // TODO Please change this theme call to use an associative array for the $variables parameter.
     $text = str_replace($match[0], theme('sms_sendtophone_filter_inline_' . $display, array(
-      'text' => $match[1],
-      'filter' => $filter)), $text
+        'text' => $match[1],
+        'filter' => $filter)), $text
     );
   }
   return $text;
@@ -232,10 +232,10 @@ function theme_sms_sendtophone_filter_inline_icon() {
   }
 
   $icon = theme('image', array('path' => array(
-      'path' => $icon_path,
-      'width' => t(variable_get("sms_sendtophone_filter_inline_display_text_$format", 'Send to phone')),
-      'height' => t('Send the highlighted text via SMS.'),
-    )));
+    'path' => $icon_path,
+    'width' => t(variable_get("sms_sendtophone_filter_inline_display_text_$format", 'Send to phone')),
+    'height' => t('Send the highlighted text via SMS.'),
+  )));
 
   $link = l($icon, 'sms/sendtophone/inline', array('attributes' => array('title' => t('Send the highlighted text via SMS.'), 'class' => 'sms-sendtophone'), 'query' => 'text=' . urlencode($text) . '&' . drupal_get_destination(), 'html' => TRUE));
 
