File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ __Behavioral Patterns__:
3737
3838| Pattern | Description |
3939| :-------:| ----------- |
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 |
4141| [ catalog] ( patterns/behavioral/catalog.py ) | general methods will call different specialized methods based on construction parameter |
4242| [ chaining_method] ( patterns/behavioral/chaining_method.py ) | continue callback next object method |
4343| [ 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 1010
1111from patterns .behavioral .catalog import main as catalog_main
1212from 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
1515from patterns .behavioral .chaining_method import main as chaining_method_main
1616from patterns .behavioral .chaining_method import OUTPUT as chaining_method_output
1717from patterns .behavioral .command import main as command_main
You can’t perform that action at this time.
0 commit comments