diff --git a/core/modules/rest/rest.module b/core/modules/rest/rest.module index 086961a..6815621 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 framwork for exposing REST resources on your site, both read and write. Out of the box it provides support for entities such as content, users, taxonomy terms, etc. that can be enabled. Other modules may add support for other types of REST resource. For more information, see the online documentation for the RESTful Web Services module.', array('!rest' => 'https://drupal.org/documentation/modules/rest')) . '

'; return $output; } }