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 REST module provides a framework for exposing Drupal\'s data structures as RESTful web services. It can be used to read and write resources remotely, such as entity types like nodes or users. For more information, see the online handbook entry 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. 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')) . '

'; return $output; } }