diff --git a/README.md b/README.md index bf3c4e413..248305011 100644 --- a/README.md +++ b/README.md @@ -254,7 +254,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) | The Builder pattern is a creational design pattern that separates the construction of a complex object from its representation, allowing the same construction process to create different representations. It enables building objects step by step and is particularly useful when a class has many configuration options or optional parameters. | | [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... | @@ -463,12 +463,6 @@ I created this repository to share a set of links that I found valuable and insp | :------------------------------------------------: | :---------- | | [Distributed Locking](docs/distributed-locking.md) | TODO... | -### Eventual Consistency - -| Topic | Description | -| :--------------------------------------------------: | :---------- | -| [Eventual Consistency](docs/eventual-consistency.md) | TODO... | - ### RESTful API Design | Topic | Description |