diff --git a/examples/src/test/java/jdocs/eventsourced/ShoppingCart.java b/examples/src/test/java/jdocs/eventsourced/ShoppingCart.java index f964e32b..3bfa5281 100644 --- a/examples/src/test/java/jdocs/eventsourced/ShoppingCart.java +++ b/examples/src/test/java/jdocs/eventsourced/ShoppingCart.java @@ -115,15 +115,15 @@ public record AdjustItemQuantity(String itemId, int quantity, ActorRefThe reply type is the {@link Summary} + *

The reply type is the {@link ShoppingCart.Summary} */ public record Get(ActorRef

replyTo) implements Command {} /** * A command to checkout the shopping cart. * - *

The reply type is the {@link Confirmation}, which will be returned when the events have been - * emitted. + *

The reply type is the {@link ShoppingCart.Confirmation}, which will be returned when the + * events have been emitted. */ public record Checkout(ActorRef replyTo) implements Command {}