Touched up README

This commit is contained in:
2024-10-20 15:10:58 +02:00
parent ae24db0c08
commit cf131f0bcf
2 changed files with 186 additions and 77 deletions

View File

@@ -21,8 +21,8 @@ func addToSlice[C Countable](slice *[]C, countable C) int {
if *slice == nil {
*slice = make([]C, 0)
}
*slice = append(*slice, countable)
*slice = append(*slice, countable)
return len(*slice) - 1
}