From fe3b58ccecc61d4587c37d3c922b5ade08e406ee Mon Sep 17 00:00:00 2001 From: Hamza elkhatri <40549481+Hamzaelkhatri@users.noreply.github.com> Date: Thu, 4 Aug 2022 11:46:33 +0100 Subject: [PATCH] docs(halfSlice): fix make title in kebab-case and fix indentation. --- subjects/halfslice/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 +```