Skip to content

Commit

Permalink
Fix problems with line lengths
Browse files Browse the repository at this point in the history
  • Loading branch information
GreyCat committed Mar 29, 2024
1 parent da1ac5a commit 63e2574
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions kaitai/error.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ type ValidationNotEqualError struct {
}

// NewValidationNotEqualError creates a new ValidationNotEqualError instance.
func NewValidationNotEqualError(expected interface{}, actual interface{}, io *Stream, srcPath string) ValidationNotEqualError {
func NewValidationNotEqualError(
expected interface{}, actual interface{}, io *Stream, srcPath string) ValidationNotEqualError {
return ValidationNotEqualError{
expected,
actual,
Expand Down Expand Up @@ -93,7 +94,8 @@ type ValidationLessThanError struct {
}

// NewValidationLessThanError creates a new ValidationLessThanError instance.
func NewValidationLessThanError(min interface{}, actual interface{}, io *Stream, srcPath string) ValidationLessThanError {
func NewValidationLessThanError(
min interface{}, actual interface{}, io *Stream, srcPath string) ValidationLessThanError {
return ValidationLessThanError{
min,
actual,
Expand Down

0 comments on commit 63e2574

Please sign in to comment.