Skip to content

Commit

Permalink
Add missing void for OrderDao::prepareOrderFromCart in index.adoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Eng-Fouad committed Apr 7, 2024
1 parent 7033ec5 commit 9ec3a3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/adoc/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4062,7 +4062,7 @@ public interface OrderDao {
@SqlCall("{call prepare_order_from_cart(:cartId, :orderId, :orderTotal)}")
@OutParameter(name = "orderId", sqlType = java.sql.Types.BIGINT)
@OutParameter(name = "orderTotal", sqlType = java.sql.Types.DECIMAL)
prepareOrderFromCart(@Bind("cartId") long cartId, Consumer<OutParameters> consumer);
void prepareOrderFromCart(@Bind("cartId") long cartId, Consumer<OutParameters> consumer);
// using a function argument also works with any extension method
@SqlCall("{call prepare_order_from_cart(:cartId, :orderId, :orderTotal)}")
Expand Down

0 comments on commit 9ec3a3b

Please sign in to comment.