diff --git a/subjects/halfslice/README.md b/subjects/halfslice/README.md index 8ef8e998..c8e9a89b 100644 --- a/subjects/halfslice/README.md +++ b/subjects/halfslice/README.md @@ -1,4 +1,4 @@ -## half-Slice +## half-slice ### Instructions @@ -25,7 +25,7 @@ import ( func main() { fmt.Println(HalfSlice([]int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10})) - fmt.Println(HalfSlice([]int{1, 2, 3})) + fmt.Println(HalfSlice([]int{1, 2, 3})) } ``` @@ -35,4 +35,4 @@ And its output : $ go run . [1,2,3,4,5] [1,2] -``` \ No newline at end of file +```