diff --git a/alinks.module b/alinks.module
index a97d9e4..4cb7a1a 100644
--- a/alinks.module
+++ b/alinks.module
@@ -108,7 +108,7 @@ function alinks_admin_settings() {
     '#size' => 5,
     '#maxlenghth' => 3,
     '#title' => t('Alinks limit'),
-    '#description' => t('Set the maxium instances an alink can replace. Use -1 if you want all instances in the node to be replaced.'),
+    '#description' => t('Set the maximum instances an alink can replace. Use -1 if you want all instances in the node to be replaced.'),
     '#default_value' => variable_get('alinks_limit', 1),
   );
 
@@ -302,7 +302,7 @@ function alinks_add_form() {
   $form['alinks_add_form']['case_insensitive'] = array(
     '#type' => 'checkbox',
     '#title' => t('Case Insensitivity'),
-    '#description' => t('By default alinks are CaSe SeNsItIvE. Chech this checkbox if you want this particular ' .
+    '#description' => t('By default alinks are CaSe SeNsItIvE. Check this checkbox if you want this particular ' .
                         'alink to be case insensitive.'),
   );
   $form['alinks_add_form']['url'] = array(
@@ -364,7 +364,7 @@ function alinks_add_form_submit($form, &$form_state) {
       'alink_weight' => $form_state['values']['weight'],
     ))
   ->execute();
-  drupal_set_message('Alink succesfuly added');
+  drupal_set_message('Alink succesfully added');
   $form_state['redirect'] = 'admin/structure/alinks/edit';
 }
 
@@ -520,5 +520,5 @@ function alinks_edit_form_submit($form, &$form_state) {
         ->execute();
     }
   }
-  drupal_set_message('Alinks succesfuly updated');
+  drupal_set_message('Alinks succesfully updated');
 }
