From 3cb0f4bd8b52a32dc498c13659a0931535cb8f61 Mon Sep 17 00:00:00 2001 From: 3kthor3adward <3kthor3adward@gmail.com> Date: Tue, 20 Oct 2015 16:58:37 -0500 Subject: [PATCH] Fix typo --- Behavioral/ChainOfResponsibilities/Responsible/SlowStorage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Behavioral/ChainOfResponsibilities/Responsible/SlowStorage.php b/Behavioral/ChainOfResponsibilities/Responsible/SlowStorage.php index bf21088..127b7fc 100644 --- a/Behavioral/ChainOfResponsibilities/Responsible/SlowStorage.php +++ b/Behavioral/ChainOfResponsibilities/Responsible/SlowStorage.php @@ -10,7 +10,7 @@ use DesignPatterns\Behavioral\ChainOfResponsibilities\Request; * * One important fact about CoR: each item in the chain MUST NOT assume its position * in the chain. A CoR is not responsible if the request is not handled UNLESS - * you make an "ExceptionHandler" which throws execption if the request goes there. + * you make an "ExceptionHandler" which throws exception if the request goes there. * * To be really extendable, each handler doesn't know if there is something after it. *