diff --git a/includes/class-amp-theme-support.php b/includes/class-amp-theme-support.php index 28ec3669afd..799a6ec4354 100644 --- a/includes/class-amp-theme-support.php +++ b/includes/class-amp-theme-support.php @@ -1874,7 +1874,7 @@ public static function prepare_response( $response, $args = [] ) { /* * Abort if the response was not HTML. To be post-processed as an AMP page, the output-buffered document must - * have the HTML mime type and it must start followed by tag (with whitespace, doctype, and comments optionally interspersed). + * have the HTML mime type and it must start with followed by tag (with whitespace, doctype, and comments optionally interspersed). */ if ( 'text/html' !== substr( AMP_HTTP::get_response_content_type(), 0, 9 ) || ! preg_match( '#^(?:|\s+)*(?:|\s+)*#is', $response ) ) { return $response;