diff --git a/content/golang/quick-sort-golang.md b/content/golang/quick-sort-golang.md index 266dfb46..3f3640a3 100644 --- a/content/golang/quick-sort-golang.md +++ b/content/golang/quick-sort-golang.md @@ -71,7 +71,7 @@ func quickSortStart(arr []int) []int { ## Example of using Quicksort in real code ```go -fmt.Println(quickSortStart([]int{5, 6, 7, 2, 1, 0)) +fmt.Println(quickSortStart([]int{5, 6, 7, 2, 1, 0})) // prints // [0, 1, 2, 5, 6, 7] ```