Index: link.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/link/link.module,v
retrieving revision 1.24
diff -u -r1.24 link.module
--- link.module	31 Mar 2008 06:50:42 -0000	1.24
+++ link.module	19 Jun 2008 13:15:29 -0000
@@ -117,7 +117,7 @@
       $form['attributes']['class'] = array(
         '#type' => 'textfield',
         '#title' => t('Additional CSS Class'),
-        '#description' => t('When output, this link will have have this class attribute. Multiple classes should be seperated by spaces.'),
+        '#description' => t('When output, this link will have have this class attribute. Multiple classes should be separated by spaces.'),
         '#default_value' => isset($field['attributes']['class']) ? $field['attributes']['class'] : '',
       );
       return $form;
@@ -329,12 +329,12 @@
   $type = link_validate_url($item['url']);
   $url = link_cleanup_url($item['url']);
 
-  // Seperate out the anchor if any.
+  // separate out the anchor if any.
   if (strpos($url, '#') !== FALSE) {
     $item['fragment'] = substr($url, strpos($url, '#') + 1);
     $url = substr($url, 0, strpos($url, '#'));
   }
-  // Seperate out the query string if any.
+  // separate out the query string if any.
   if (strpos($url, '?') !== FALSE) {
     $item['query'] = substr($url, strpos($url, '?') + 1);
     $url = substr($url, 0, strpos($url, '?'));
