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 @@ -31,7 +31,7 @@ case 'help.page.rest': $output = ''; $output .= '

' . t('About') . '

'; - $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')) . '

'; + $output .= '

' . t('The RESTful Web Services module provides a framework for exposing REST resources on your site, both read and write. It provides support for content 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; } }