fixed typo across the project

This commit is contained in:
esimov
2020-10-21 11:03:06 +03:00
parent c85c33ef2f
commit 6b4129f4c8
17 changed files with 79 additions and 79 deletions

View File

@@ -119,7 +119,7 @@ func FindFaces(pixels []uint8) uintptr {
coords := make([]int, 0, len(dets))
go func() {
// Since in Go we cannot transfer a 2d array trough an array pointer
// Since in Go we cannot transfer a 2d array through an array pointer
// we have to transform it into 1d array.
for _, v := range dets {
coords = append(coords, v...)