Skip to content

Commit ec15040

Browse files
Apply suggestions from code review
Co-Authored-By: boekkooi-fresh <[email protected]>
1 parent ab6573c commit ec15040

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
GoEngine is an Event Sourcing library written for GoLang.
44

5-
The goal is the library is to reduce the amount of time a you have to think about the infrastructure so you can focus on
5+
The goal of this library is to reduce the amount of time you have to spend thinking about the infrastructure so you can focus on
66
implementing your Domains and Business logic!
77

88
## Installation

docs/extension/logging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ In order to use [zap] as your logger GoEngine provides a wrapper for `*zap.Logge
2020

2121
```golang
2222
import (
23-
"github.com/hellofresh/goengine"
23+
"github.com/hellofresh/goengine"
2424
goengineLogger "github.com/hellofresh/goengine/extension/zap"
2525
"go.uber.org/zap"
2626
)

docs/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ func (r *BankAccountRepository) Save(ctx context.Context, bankAccount *BankAccou
194194
```
195195

196196
Now that we have a BankAccountRepository we need to configure the Event Store which manages the events for that the aggregate root.
197-
*Currently GoEngine support a postgres and inmemory (for testing the) event store.*
197+
*Currently GoEngine support a postgres and inmemory event store.*
198198

199199
To make your live easier we will use the postgres json SingleStreamManager. This manager is a helper so you don't need
200200
to create a payload transformer, persistence strategy, message factory and finally the event store.

0 commit comments

Comments
 (0)