diff --git a/core/modules/rest/rest.module b/core/modules/rest/rest.module index 086961a..04b8acc 100644 --- a/core/modules/rest/rest.module +++ b/core/modules/rest/rest.module @@ -30,7 +30,7 @@ function rest_help($path, $arg) { 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. 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; } }