From 1bbf611acb7afbdb36bff7e4bcc4e7ab0f6b6a9a Mon Sep 17 00:00:00 2001 From: Fabrice Yopa Date: Sat, 22 Nov 2025 21:03:43 +0000 Subject: [PATCH] fix class name. --- clean-architecture/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clean-architecture/README.md b/clean-architecture/README.md index 599ae19ce13e..ac6bafa25e49 100644 --- a/clean-architecture/README.md +++ b/clean-architecture/README.md @@ -63,7 +63,7 @@ public class Cart { private Product product; private int quantity; - public CartItem(Product product, int quantity) { + public Cart(Product product, int quantity) { this.product = product; this.quantity = quantity; }