diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/area/HTTPStatusCode.php b/core/modules/views/lib/Drupal/views/Plugin/views/area/HTTPStatusCode.php index d7ef322..c35b5a5 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/area/HTTPStatusCode.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/area/HTTPStatusCode.php @@ -41,7 +41,7 @@ public function buildOptionsForm(&$form, &$form_state) { // Get all possible status code defined by symfony. $options = Response::$statusTexts; - // Add the http status code, so it's easier for people to find it. + // Add the HTTP status code, so it's easier for people to find it. array_walk($options, function($title, $code) use(&$options) { $title = t($title); $options[$code] = t('@title (@code)', array('@title' => $title, '@code' => $code)); diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/AreaHTTPStatusCodeTest.php b/core/modules/views/lib/Drupal/views/Tests/Handler/AreaHTTPStatusCodeTest.php index 587f592..1bd9023 100644 --- a/core/modules/views/lib/Drupal/views/Tests/Handler/AreaHTTPStatusCodeTest.php +++ b/core/modules/views/lib/Drupal/views/Tests/Handler/AreaHTTPStatusCodeTest.php @@ -23,7 +23,7 @@ public static function getInfo() { } /** - * Test tha area handler. + * Tests the area handler. */ public function testHTTPStatusCodeHandler() { $this->drupalGet('test-http-status-code');