From 2bda8bc7b243ea38479e10f8ca280985fc3c13b6 Mon Sep 17 00:00:00 2001 From: Isaiah Clifford Opoku Date: Sun, 25 Aug 2024 20:04:50 +0000 Subject: [PATCH] chore : Adding context for the Builder pattern --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 760285539..7dbb6ab97 100644 --- a/README.md +++ b/README.md @@ -234,7 +234,7 @@ I created this repository to share a set of links that I found valuable and insp |:-------:|:----------- | | [Design Patterns](docs/design-patterns/design-patterns.md) | A comprehensive list of design patterns with examples and explanations of how they can be used to solve common software design problems. | [Adapter Pattern](docs/design-patterns/adapter-pattern.md) | The Adapter Pattern is a structural design pattern that allows objects with incompatible interfaces to work together by providing a wrapper that adapts the interface of one object to match the interface of another. Actually The Adapter acts as a wrapper between two objects. It catches calls for one object and transforms them to format and interface recognizable by the second object. -| [Builder](docs/design-patterns/builder.md) | TODO... +| [Builder](docs/design-patterns/builder.md) | Builder is a creational design pattern that allows for the step-by-step creation of complex objects using the Builder interface. It separates the construction of a complex object from its representation, allowing the same construction process to create different representations. | [Chain of Responsibility](docs/design-patterns/chain-of-responsibility.md) | TODO... | [Command Message Pattern](docs/design-patterns/command-message-pattern.md) | TODO... | [Command Pattern](docs/design-patterns/command-pattern.md) | TODO...