Skip to content

Commit b7df335

Browse files
authored
Fix typo in valid_inputs error
1 parent 33d64d1 commit b7df335

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ function validate_inputs(x, y)
178178
if dim(x) != dim(y) # Passes by default if `dim` is not defined
179179
throw(
180180
DimensionMismatch(
181-
"Dimensionality of x ($(dim(x))) not equality to that of y ($(dim(y)))"
181+
"Dimensionality of x ($(dim(x))) not equal to that of y ($(dim(y)))"
182182
),
183183
)
184184
end

0 commit comments

Comments
 (0)