From fa52d1fab4f669937616450c5561af9b0cab94b9 Mon Sep 17 00:00:00 2001 From: a3020 Date: Fri, 26 Feb 2016 15:15:44 +0100 Subject: [PATCH] Improve word order The text should reflect the code. --- _posts/09-02-01-Errors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/09-02-01-Errors.md b/_posts/09-02-01-Errors.md index d495f8b..fd2bf64 100644 --- a/_posts/09-02-01-Errors.md +++ b/_posts/09-02-01-Errors.md @@ -48,7 +48,7 @@ changes to your code to help ensure best interoperability and forward compatibil Error Reporting can be changed by using PHP settings and/or PHP function calls. Using the built in PHP function `error_reporting()` you can set the level of errors for the duration of the script execution by passing one of the -predefined error level constants, meaning if you only want to see Warnings and Errors - but not Notices - then you can +predefined error level constants, meaning if you only want to see Errors and Warnings - but not Notices - then you can configure that: {% highlight php %}