Skip to content

Commit

Permalink
Fix typo in concatenate error message
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Sep 13, 2023
1 parent bb5689f commit 5274e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytato/array.py
Original file line number Diff line number Diff line change
Expand Up @@ -1892,7 +1892,7 @@ def shape_except_axis(ary: Array) -> ShapeType:

for array in arrays[1:]:
if shape_except_axis(array) != shape_except_axis(arrays[0]):
raise ValueError("arrays must have the same shape expect along"
raise ValueError("arrays must have the same shape except along"
f" dimension #{axis}.")

if not (0 <= axis <= arrays[0].ndim):
Expand Down

0 comments on commit 5274e91

Please sign in to comment.