From 23688b67d2766b4b829bddc027df0c9f6d521317 Mon Sep 17 00:00:00 2001
From: Joe Shindelar <eojthebrave@gmail.com>
Date: Wed, 20 Jun 2012 15:16:22 -0500
Subject: [PATCH] Fix typo on admin pages. Subsription should be Subscription.

---
 includes/recurly.admin.inc |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/includes/recurly.admin.inc b/includes/recurly.admin.inc
index b6ecf05..54cafb6 100644
--- a/includes/recurly.admin.inc
+++ b/includes/recurly.admin.inc
@@ -173,7 +173,7 @@ function recurly_settings_form($form, &$form_state) {
       'live' => t('Live subscriptions (active, trials, canceled, and past due)'),
       'all' => t('All (includes expired subscriptions)'),
     ),
-    '#description' => t('Users may subscribe or switch between any of the enabled plans by visiting the Subsription tab.'),
+    '#description' => t('Users may subscribe or switch between any of the enabled plans by visiting the Subscription tab.'),
     '#default_value' => variable_get('recurly_subscription_display', 'live'),
     '#states' => $type_selected,
   );
@@ -191,7 +191,7 @@ function recurly_settings_form($form, &$form_state) {
     '#title' => t('Enabled plans'),
     '#type' => 'checkboxes',
     '#options' => $plan_options,
-    '#description' => t('Users may subscribe or switch between any of the enabled plans by visiting the Subsription tab.'),
+    '#description' => t('Users may subscribe or switch between any of the enabled plans by visiting the Subscription tab.'),
     '#access' => count($plan_options),
     '#default_value' => variable_get('recurly_subscription_plans', array_keys($plan_options)),
     '#states' => $type_selected,
-- 
1.7.10

