Skip to content

Commit

Permalink
-Root.
Browse files Browse the repository at this point in the history
  • Loading branch information
Corniel Nobel committed Jun 8, 2023
1 parent 8305651 commit 3e1f85b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public Result<Game> Attack(Country attacker, Country defender, AttackResult resu
```

## Event Buffer
The `EventBuffer<TId>`, as used by `AggregateRoot<TAggregate, TId>` is an
The `EventBuffer<TId>`, as used by `Aggregate<TAggregate, TId>` is an
immutable collection with the following API:

``` C#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class EventBufferAssertions<TId> : GenericCollectionAssertions<EventBuffe
/// <summary>Initializes a new instance of the <see cref="EventBufferAssertions{TId}"/> class.</summary>
public EventBufferAssertions(EventBuffer<TId> subject) : base(subject) { }

/// <summary>Verifies that the <see cref="AggregateRoot{TAggregate}"/> has the expected uncommitted events.</summary>
/// <summary>Verifies that the <see cref="Aggregate{TAggregate}"/> has the expected uncommitted events.</summary>
/// <param name="uncommitted">
/// The expected uncommitted event messages.
/// </param>
Expand Down

0 comments on commit 3e1f85b

Please sign in to comment.