From 0b56d33d02f51c87619ff5ab65787b5f1250bbb7 Mon Sep 17 00:00:00 2001 From: Matt Soucoup Date: Thu, 24 Jul 2025 17:52:04 -0700 Subject: [PATCH] Update instructions/object-calisthenics.instructions.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- instructions/object-calisthenics.instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instructions/object-calisthenics.instructions.md b/instructions/object-calisthenics.instructions.md index d76e376..18d8c2b 100644 --- a/instructions/object-calisthenics.instructions.md +++ b/instructions/object-calisthenics.instructions.md @@ -119,7 +119,7 @@ This rule enforces the principles of Object Calisthenics to ensure clean, mainta 4. **First Class Collections**: - Use collections to encapsulate data and behavior, rather than exposing raw data structures. -First Class Collections : une classe qui contient comme attribut un tableau ne doit contenir aucun autre attribut +First Class Collections: a class that contains an array as an attribute should not contain any other attributes ```csharp // Bad Example - Exposing raw collection