Index: modules/help/help.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/help/help.module,v
retrieving revision 1.69
diff -u -p -r1.69 help.module
--- modules/help/help.module	23 Dec 2006 22:06:05 -0000	1.69
+++ modules/help/help.module	12 Jan 2007 13:57:00 -0000
@@ -21,7 +21,7 @@ function help_menu($may_cache) {
       'weight' => 9);
 
     foreach (module_implements('help', TRUE) as $module) {
-      $items[] = array('path' => 'admin/help/' . $module,
+      $items[] = array('path' => 'admin/help/'. $module,
         'title' => t($module),
         'callback' => 'help_page',
         'type' => MENU_CALLBACK,
@@ -90,9 +90,9 @@ function help_links_as_list() {
 function help_help($section) {
   switch ($section) {
     case 'admin/help':
-      $output = t('<p>This guide explains what the various modules in <a href="@Drupal">Drupal</a> do and how to configure them. Additionally, you will find a glossary of basic Drupal terminology to help get you started.</p>
+      $output = t('<p>This guide explains what the various modules in <a href="@drupal">Drupal</a> do and how to configure them. Additionally, you will find a glossary of basic Drupal terminology to help get you started.</p>
 <p>It is not a substitute for the <a href="@handbook">Drupal handbook</a> available online and should be used in conjunction with it. The online reference handbook might be more up-to-date and has helpful user-contributed comments. It is your definitive reference point for all Drupal documentation.</p>
-', array('@Drupal' => 'http://drupal.org', '@handbook' => 'http://drupal.org/handbook'));
+', array('@drupal' => 'http://drupal.org', '@handbook' => 'http://drupal.org/handbook'));
       return $output;
     case 'admin/help#help':
       $output = '<p>'. t('The help module displays context sensitive help information. Users can learn how to use modules and accomplish tasks quicker with less errors by clicking on links in provided by the help module.') .'</p>';
