diff --git a/src/wp-includes/class-wp-fatal-error-handler.php b/src/wp-includes/class-wp-fatal-error-handler.php
index 0f6692e603..412e1299f4 100644
a
|
b
|
class WP_Fatal_Error_Handler { |
191 | 191 | $message = sprintf( |
192 | 192 | '<p>%s</p><p><a href="%s">%s</a></p>', |
193 | 193 | $message, |
194 | | /* translators: Documentation explaining debugging in WordPress. */ |
195 | | __( 'https://wordpress.org/support/article/debugging-in-wordpress/' ), |
196 | | __( 'Learn more about debugging in WordPress.' ) |
| 194 | /* translators: Documentation about troubleshooting. */ |
| 195 | __( 'https://wordpress.org/support/article/faq-troubleshooting/' ), |
| 196 | __( 'Learn more about troubleshooting WordPress.' ) |
197 | 197 | ); |
198 | 198 | |
199 | 199 | $args = array( |