From f37dbf8be8c7e2749bccddaab37776323bbebc76 Mon Sep 17 00:00:00 2001 From: ParamountSoft Date: Sun, 29 Jun 2014 18:38:56 +0200 Subject: [PATCH] Update README.md --- Behavioral/ChainOfResponsibilities/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Behavioral/ChainOfResponsibilities/README.md b/Behavioral/ChainOfResponsibilities/README.md index 462f6c1..3369cd5 100644 --- a/Behavioral/ChainOfResponsibilities/README.md +++ b/Behavioral/ChainOfResponsibilities/README.md @@ -2,7 +2,7 @@ ## Purpose: -To build a chain of objects to handle a call. If one object cannot handle a call, it delegates the call to the next in the chain and so forth. +To build a chain of objects to handle a call in sequential order. If one object cannot handle a call, it delegates the call to the next in the chain and so forth. ## Examples: