Skip to content

Commit 6a3c206

Browse files
committed
Update README.md
1 parent e6d9b6e commit 6a3c206

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,24 @@
33

44

55
##Abstract Factory
6-
Intent: Provide an interface for creating families of related or dependent objects without specifying their concrete classes.
6+
**Intent:** Provide an interface for creating families of related or dependent objects without specifying their concrete classes.
77

88

99
##Builder
10-
Intent: Separate the construction of a complex object from its representation so that the same construction process can create different representations.
10+
**Intent:** Separate the construction of a complex object from its representation so that the same construction process can create different representations.
1111

1212

1313
##Factory Method
14-
Intent: Define an interface for creating an object, but let subclasses decide which class to instantiate. Factory Method lets a class defer instantiation to subclasses.
14+
**Intent:** Define an interface for creating an object, but let subclasses decide which class to instantiate. Factory Method lets a class defer instantiation to subclasses.
1515

1616
##Prototype
17-
Intent: Specify the kinds of objects to create using a prototypical instance, and create new objects by copying this prototype.
17+
**Intent:** Specify the kinds of objects to create using a prototypical instance, and create new objects by copying this prototype.
1818

1919
##Singleton
20-
Intent: Ensure a class only has one instance, and provide a global point of access to it.
20+
**Intent:** Ensure a class only has one instance, and provide a global point of access to it.
2121

2222
##Adapter
23-
Intent: Convert the interface of a class into another interface clients expect. Adapter lets classes work together that couldn't otherwise because of incompatible interfaces.
23+
**Intent:** Convert the interface of a class into another interface clients expect. Adapter lets classes work together that couldn't otherwise because of incompatible interfaces.
2424

2525
##Bridge
26-
Intent: Decouple an abstraction from its implementationso that the two can vary independently.
26+
**Intent:** Decouple an abstraction from its implementationso that the two can vary independently.

0 commit comments

Comments
 (0)