diff -u b/core/modules/rest/rest.module b/core/modules/rest/rest.module --- b/core/modules/rest/rest.module +++ b/core/modules/rest/rest.module @@ -30,7 +30,7 @@ case 'admin/help#rest': $output = ''; $output .= '

' . t('About') . '

'; - $output .= '

' . t('The RESTful Web Services module provides a framework for exposing the site\'s data structures as web services. This allows other applications to remotely read and update entity types like site content, comments, custom blocks, taxonomy terms and user accounts. For more information, see the online documentation for the RESTful Web Services module.', array('!rest' => 'http://drupal.org/documentation/modules/rest')) . '

'; + $output .= '

' . t('The RESTful Web Services module provides a framework for exposing the site\'s data structures as web services. The framework can be used by other modules to allow other applications to remotely read and update entity types like site content, comments, custom blocks, taxonomy terms, and user accounts. For more information, see the online documentation for the RESTful Web Services module.', array('!rest' => 'http://drupal.org/documentation/modules/rest')) . '

'; return $output; } }