lang: types: Fix capitalization

This commit is contained in:
James Shubin
2024-03-08 15:55:21 -05:00
parent 36ebddf986
commit 1f37ac83e4

View File

@@ -44,7 +44,7 @@ import (
var ( var (
// ErrNilValue is returned when ValueOf() attempts to represent a nil // ErrNilValue is returned when ValueOf() attempts to represent a nil
// pointer as an mcl value. This is not supported in mcl. // pointer as an mcl value. This is not supported in mcl.
ErrNilValue = errors.New("cannot represent a nil Golang value in mcl") ErrNilValue = errors.New("cannot represent a nil golang value in mcl")
// ErrInvalidValue is returned when ValueOf() is called on an invalid or // ErrInvalidValue is returned when ValueOf() is called on an invalid or
// zero reflect.Value. // zero reflect.Value.