From a98420f7641a48c071a27ca8b67794068aa05f8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eoin=20=C3=93=20Conch=C3=BAir?= Date: Mon, 16 Jul 2012 11:27:32 +0200 Subject: [PATCH] Correct single-word typo Fixed a tiny typo I saw. --- _posts/05-02-01-Exceptions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/05-02-01-Exceptions.md b/_posts/05-02-01-Exceptions.md index 9358ff0..254d05f 100644 --- a/_posts/05-02-01-Exceptions.md +++ b/_posts/05-02-01-Exceptions.md @@ -16,7 +16,7 @@ looking for a mistake and check the docs to see what the error method is for thi obvious. Another problem is when classes automatically throw an error to the screen and exit the process. When you do this you -stop another developer from being able to dynamically handle that error. Exceptions should be throw to make a developer aware +stop another developer from being able to dynamically handle that error. Exceptions should be thrown to make a developer aware of an error, then they can choose how to handle this. E.g: {% highlight php %}