From 8ba72a4e74564752ccd1b3ba0f1b20b7439fd5b2 Mon Sep 17 00:00:00 2001 From: David Badura Date: Thu, 1 Feb 2024 15:02:42 +0100 Subject: [PATCH] wording Co-authored-by: Daniel Badura --- docs/pages/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/getting_started.md b/docs/pages/getting_started.md index 1a22fec50..b84a936a1 100644 --- a/docs/pages/getting_started.md +++ b/docs/pages/getting_started.md @@ -60,7 +60,7 @@ final class GuestIsCheckedOut Next we need to define the hotel aggregate. How you can interact with it, which events happen and what the business rules are. For this we create the methods `create`, `checkIn` and `checkOut`. -In these methods the business checks are made and events are recorded. +In these methods the business checks are made and the events are recorded. Last but not least, we need the associated apply methods to change the state. ```php