[skip ci] Typo (#10888)

Signed-off-by: yhmo <yihua.mo@zilliz.com>
This commit is contained in:
groot 2021-10-29 12:07:20 +08:00 committed by GitHub
parent e9a22a47eb
commit e0a2bf336d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -94,7 +94,7 @@ func convertToByteArray(input interface{}) ([]byte, error) {
case []byte:
return output, nil
default:
return nil, errors.New("cannot convert interface{} to []byte")
return nil, errors.New("Cannot convert interface{} to []byte")
}
}