File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ __Behavioral Patterns__:
37
37
38
38
| Pattern | Description |
39
39
| :-------:| ----------- |
40
- | [ chain ] ( patterns/behavioral/chain .py ) | apply a chain of successive handlers to try and process the data |
40
+ | [ chain_of_responsibility ] ( patterns/behavioral/chain_of_responsibility .py ) | apply a chain of successive handlers to try and process the data |
41
41
| [ catalog] ( patterns/behavioral/catalog.py ) | general methods will call different specialized methods based on construction parameter |
42
42
| [ chaining_method] ( patterns/behavioral/chaining_method.py ) | continue callback next object method |
43
43
| [ command] ( patterns/behavioral/command.py ) | bundle a command and arguments to call later |
File renamed without changes.
Original file line number Diff line number Diff line change 10
10
11
11
from patterns .behavioral .catalog import main as catalog_main
12
12
from patterns .behavioral .catalog import OUTPUT as catalog_output
13
- from patterns .behavioral .chain import main as chain_main
14
- from patterns .behavioral .chain import OUTPUT as chain_output
13
+ from patterns .behavioral .chain_of_responsibility import main as chain_main
14
+ from patterns .behavioral .chain_of_responsibility import OUTPUT as chain_output
15
15
from patterns .behavioral .chaining_method import main as chaining_method_main
16
16
from patterns .behavioral .chaining_method import OUTPUT as chaining_method_output
17
17
from patterns .behavioral .command import main as command_main
You can’t perform that action at this time.
0 commit comments