Skip to content

Commit

Permalink
Fix typo in valid_inputs error (#408)
Browse files Browse the repository at this point in the history
* Fix typo in valid_inputs error

* Update src/utils.jl

Co-authored-by: David Widmann <[email protected]>

Co-authored-by: David Widmann <[email protected]>
  • Loading branch information
theogf and devmotion authored Nov 24, 2021
1 parent 9955044 commit 3c49949
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ function validate_inputs(x, y)
if dim(x) != dim(y) # Passes by default if `dim` is not defined
throw(
DimensionMismatch(
"Dimensionality of x ($(dim(x))) not equality to that of y ($(dim(y)))"
"dimensionality of x ($(dim(x))) is not equal to that of y ($(dim(y)))"
),
)
end
Expand Down

0 comments on commit 3c49949

Please sign in to comment.