Skip to content

Commit

Permalink
Remove errant parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
swissspidy committed Nov 30, 2022
1 parent 0e59543 commit 94a8ae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/AMP/Output_Buffer.php
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,6 @@ private function render_error_page( Throwable $throwable ): string {
"\n" .
"\n" .
// translators: 1: error message. 2: location.
sprintf( esc_html__( 'Error message: %1$s (%2$s)', 'web-stories' ) ), $throwable->getMessage(), $throwable->getFile() . ':' . $throwable->getLine() );
sprintf( esc_html__( 'Error message: %1$s (%2$s)', 'web-stories' ), $throwable->getMessage(), $throwable->getFile() . ':' . $throwable->getLine() );
}
}

0 comments on commit 94a8ae0

Please sign in to comment.