Skip to content

Commit a9c3aae

Browse files
committed
fixed link and bolded concepts
1 parent 75c025a commit a9c3aae

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

content/general/concepts/abstract-factory-pattern/abstract-factory-pattern.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ CatalogContent:
1414
- 'paths/computer-science'
1515
---
1616

17-
The abstract factory pattern utilizes a common interface for multiple factories without defining their concrete model classes. It is often thought of as a factory of factory patterns where object composition is used to separate instantiation logic from application logic.
17+
The **abstract factory pattern** utilizes a common interface for multiple factories without defining their concrete model classes. It is often thought of as a factory of factory patterns where object composition is used to separate instantiation logic from application logic.
1818

1919
## UML Design
2020

content/general/concepts/creational-design-patterns/creational-design-patterns.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ CatalogContent:
1414
- 'paths/computer-science'
1515
---
1616

17-
Creational design patterns concern themselves with the instantiation of objects. At the time of creation, additional logic may be needed to decide what or how object types need to be created.
17+
**Creational design patterns** concern themselves with the instantiation of objects. At the time of creation, additional logic may be needed to decide what or how object types need to be created.
1818

1919
Five main creational design patterns are outlined below:
2020

2121
- [Singleton](https://www.codecademy.com/resources/docs/general/singleton-pattern): Ensures a class has only one object instantiated during the programs lifecycle.
2222
- [Builder](https://www.codecademy.com/resources/docs/general/builder-pattern): Decouples the responsibility of object creation from the desired object's class. It is normally implemented when a class requires many properties to be set during its construction.
2323
- [Prototype](https://www.codecademy.com/resources/docs/general/prototype-pattern): Adds cloning functionality to an objects class.
2424
- [Factory](https://www.codecademy.com/resources/docs/general/factory-pattern): Creates objects without specifying the specific class.
25-
- [Abstract Factory](https://www.codecademy.com/resources/docs/general/abstract-factory): Groups object factories based on a common theme.
25+
- [Abstract Factory](https://www.codecademy.com/resources/docs/general/abstract-factory-pattern): Groups object factories based on a common theme.

0 commit comments

Comments
 (0)