1
0
mirror of synced 2025-02-02 13:31:45 +03:00

Merge pull request #7378 from BenMorel/patch-2

Typo fix
This commit is contained in:
Michael Moravec 2018-09-23 05:05:58 +02:00 committed by GitHub
commit f48d71ecd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -322,7 +322,7 @@ The aggregate field ``Account::$balance`` is now -200, however the
SUM over all entries amounts yields -400. A violation of our max
credit rule.
You can use both optimistic or pessimistic locking to save-guard
You can use both optimistic or pessimistic locking to safe-guard
your aggregate fields against this kind of race-conditions. Reading
Eric Evans DDD carefully he mentions that the "Aggregate Root"
(Account in our example) needs a locking mechanism.