From 030fc6cf619b4ec1a7a6a0847cf35fb8019e05ab Mon Sep 17 00:00:00 2001 From: WeLytics <2650967+kellerfabian@users.noreply.github.com> Date: Mon, 19 Jul 2021 11:59:43 +0200 Subject: [PATCH] Fixed typo in DRY source example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9aaeb3b..411dda4 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();