diff --git a/README.txt b/README.txt
index 87ee583..133b2da 100644
--- a/README.txt
+++ b/README.txt
@@ -10,7 +10,7 @@ Adds the Google AdWords Conversion Tracking to your nodes.
 Requirements
 ============
 
-* Google AdWrods user account
+* Google AdWords user account
 
 
 Installation
@@ -32,3 +32,7 @@ You enable the tracking of content-types in the content-type
 edit form.
   
 All pages will now have the required JavaScript added to the node.
+
+It's possible to override the Adwords Label on specfic paths by entering Label|path pairs on the configuration page.
+
+It's possible to override the Adwords settings on a per-node basis by enabling overrides on each content type's edit form.
\ No newline at end of file
diff --git a/google_adwords.admin.inc b/google_adwords.admin.inc
index 421f717..a2bc05f 100644
--- a/google_adwords.admin.inc
+++ b/google_adwords.admin.inc
@@ -72,9 +72,9 @@ function google_adwords_admin_settings(&$form_state) {
 
   $form['conversion']['google_adwords_conversion_pages'] = array(
       '#type' => 'textarea',
-      '#title' => t('Label | Pages'),
+      '#title' => t('Label | Paths'),
       '#default_value' => variable_get('google_adwords_conversion_pages', ''),
-      '#description' => t("Enter one entry per line seperated with a '|', in the format: <em>label|path</em>. The '*' character is a wildcard. Example paths are %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page.", array('%blog' => 'blog', '%blog-wildcard' => 'blog/*', '%front' => '<front>')),
+      '#description' => t("To have conversion codes on pages other than node pages, you can associate labels with paths here. Enter one entry per line seperated with a '|', in the format: <em>label|path</em>. The '*' character is a wildcard. Example paths are %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page.", array('%blog' => 'blog', '%blog-wildcard' => 'blog/*', '%front' => '<front>')),
   );
 
   return system_settings_form($form);
diff --git a/google_adwords.module b/google_adwords.module
index aabfc0a..ebe84c5 100644
--- a/google_adwords.module
+++ b/google_adwords.module
@@ -43,8 +43,8 @@ function google_adwords_form_alter(&$form, $form_state, $form_id) {
     // Enable/disable Google AdWords for this content type.
     $form['google_adwords']['google_adwords_activation'] = array(
       '#type' => 'radios',
-      '#title' => t('Google AdWords parameters'),
-      '#description' => t('Provide Google AdWords for nodes of this content type.'),
+      '#title' => t('Google AdWords Overrides'),
+      '#description' => t('Configure Google Adwords for this content type on a per-node basis.'),
       '#default_value' => variable_get('google_adwords_activation_'. $form['#node_type']->type, 0), // default to 'Disabled'
       '#options' => array(t('Disabled'), t('Enabled')),
     );
