From 2260e80552dda5c64e1754e669c8b0ef366c06e2 Mon Sep 17 00:00:00 2001 From: Yiwei Zhou Date: Thu, 19 Dec 2024 16:19:05 +0800 Subject: [PATCH] fix(bubble-sort): update incorrect variable name in test output --- codes/go/chapter_sorting/bubble_sort_test.go | 2 +- zh-hant/codes/go/chapter_sorting/bubble_sort_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/codes/go/chapter_sorting/bubble_sort_test.go b/codes/go/chapter_sorting/bubble_sort_test.go index 53a7d055ac..0588ae57b3 100644 --- a/codes/go/chapter_sorting/bubble_sort_test.go +++ b/codes/go/chapter_sorting/bubble_sort_test.go @@ -16,5 +16,5 @@ func TestBubbleSort(t *testing.T) { nums1 := []int{4, 1, 3, 1, 5, 2} bubbleSortWithFlag(nums1) - fmt.Println("冒泡排序完成后 nums1 = ", nums) + fmt.Println("冒泡排序完成后 nums1 = ", nums1) } diff --git a/zh-hant/codes/go/chapter_sorting/bubble_sort_test.go b/zh-hant/codes/go/chapter_sorting/bubble_sort_test.go index af9895eecb..283e7c9b58 100644 --- a/zh-hant/codes/go/chapter_sorting/bubble_sort_test.go +++ b/zh-hant/codes/go/chapter_sorting/bubble_sort_test.go @@ -16,5 +16,5 @@ func TestBubbleSort(t *testing.T) { nums1 := []int{4, 1, 3, 1, 5, 2} bubbleSortWithFlag(nums1) - fmt.Println("泡沫排序完成後 nums1 = ", nums) + fmt.Println("泡沫排序完成後 nums1 = ", nums1) }