From ac6103546becccd88a6679b1f938d8353e04a98a Mon Sep 17 00:00:00 2001 From: Essa Alshammri Date: Mon, 1 Apr 2024 04:12:37 +0300 Subject: [PATCH] remove English text --- content/docs/go-fundamentals/arrays-and-slices.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/content/docs/go-fundamentals/arrays-and-slices.md b/content/docs/go-fundamentals/arrays-and-slices.md index 99249f3..b82aa2c 100644 --- a/content/docs/go-fundamentals/arrays-and-slices.md +++ b/content/docs/go-fundamentals/arrays-and-slices.md @@ -186,10 +186,6 @@ func Sum(numbers []int) int { اتضح أن إصلاح مشاكل المترجم كان كل ما يتعين علينا القيام به هنا وستنجح الاختبارات الاختبارات! -## Refactor - -We already refactored `Sum` - all we did was replace arrays with slices, so no extra changes are required. -Remember that we must not neglect our test code in the refactoring stage - we can further improve our `Sum` tests. ## إعادة الكتابة