X Tutup
Skip to content

Commit 2ea6bab

Browse files
committed
Replace TL;DR80 -> TL;DR
1 parent 1417906 commit 2ea6bab

31 files changed

+31
-31
lines changed

patterns/behavioral/chain_of_responsibility__py2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
As a variation some receivers may be capable of sending requests out
1818
in several directions, forming a `tree of responsibility`.
1919
20-
*TL;DR80
20+
*TL;DR
2121
Allow a request to pass down a chain of receivers until it is handled.
2222
"""
2323

patterns/behavioral/chain_of_responsibility__py3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
As a variation some receivers may be capable of sending requests out
1818
in several directions, forming a `tree of responsibility`.
1919
20-
*TL;DR80
20+
*TL;DR
2121
Allow a request to pass down a chain of receivers until it is handled.
2222
"""
2323

patterns/behavioral/command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33

44
"""
5-
*TL;DR80
5+
*TL;DR
66
Encapsulates all information needed to perform an action or trigger an event.
77
88
*Examples in Python ecosystem:

patterns/behavioral/iterator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
http://ginstrom.com/scribbles/2007/10/08/design-patterns-python-style/
66
Implementation of the iterator pattern with a generator
77
8-
*TL;DR80
8+
*TL;DR
99
Traverses a container and accesses the container's elements.
1010
"""
1111

patterns/behavioral/mediator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Objects in a system communicate through a Mediator instead of directly with each other.
88
This reduces the dependencies between communicating objects, thereby reducing coupling.
99
10-
*TL;DR80
10+
*TL;DR
1111
Encapsulates how a set of objects interact.
1212
"""
1313

patterns/behavioral/memento.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"""
55
http://code.activestate.com/recipes/413838-memento-closure/
66
7-
*TL;DR80
7+
*TL;DR
88
Provides the ability to restore an object to its previous state.
99
"""
1010

patterns/behavioral/observer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"""
55
http://code.activestate.com/recipes/131499-observer-pattern/
66
7-
*TL;DR80
7+
*TL;DR
88
Maintains a list of dependents and notifies them of any state changes.
99
1010
*Examples in Python ecosystem:

patterns/behavioral/specification.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"""
55
@author: Gordeev Andrey <gordeev.and.and@gmail.com>
66
7-
*TL;DR80
7+
*TL;DR
88
Provides recombination business logic by chaining together using boolean logic.
99
"""
1010

patterns/behavioral/state.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
http://ginstrom.com/scribbles/2007/10/08/design-patterns-python-style/
88
9-
*TL;DR80
9+
*TL;DR
1010
Implements state as a derived class of the state pattern interface.
1111
Implements state transitions by invoking methods from the pattern's superclass.
1212
"""

patterns/behavioral/strategy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Define a family of algorithms, encapsulate each one, and make them interchangeable.
77
Strategy lets the algorithm vary independently from clients that use it.
88
9-
*TL;DR80
9+
*TL;DR
1010
Enables selecting an algorithm at runtime.
1111
"""
1212

0 commit comments

Comments
 (0)
X Tutup