From 0b2c832c94ca3807d5c119087e97c33c9bca44a4 Mon Sep 17 00:00:00 2001 From: Huynh Dieu Tuong Date: Mon, 28 Oct 2024 17:36:35 +0700 Subject: [PATCH] Fix typo in ShowDeveloperList in the DRY section --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a6d265b..fd38a3d 100644 --- a/README.md +++ b/README.md @@ -2380,7 +2380,7 @@ Getting the abstraction right is critical, that's why you should follow the SOLI ```csharp public List ShowDeveloperList(Developers developers) { - foreach (var developers in developer) + foreach (var developer in developers) { var expectedSalary = developer.CalculateExpectedSalary(); var experience = developer.GetExperience();