From 95a75bb36a994d11054f08448eb086875b1582ad Mon Sep 17 00:00:00 2001 From: Johannes Rudolph Date: Tue, 28 May 2024 11:48:39 +0200 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4208150..2fa4c92 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ [license-badge]: https://img.shields.io/github/license/hseeberger/evented [license-url]: https://github.com/hseeberger/evented/blob/main/LICENSE -evented is a library for [Event Sourcing](https://martinfowler.com/eaaDev/EventSourcing.html) where state changes are persisted as events. It originated from [eventsourced](https://github.com/hseeberger/eventsourced), but offers additional strong consistency features by tighlty coupling to [PostgreSQL](https://www.postgresql.org/). +evented is a library for [Event Sourcing](https://martinfowler.com/eaaDev/EventSourcing.html) where state changes are persisted as events. It originated from [eventsourced](https://github.com/hseeberger/eventsourced), but offers additional strong consistency features by tightly coupling to [PostgreSQL](https://www.postgresql.org/). The core abstraction of evented is an `EventSourcedEntity` which can be identified via an ID: an `Entity` implementation defines its state and event handling and associated `Command` implementations define its command handling.