Skip to content

Commit

Permalink
fix zip syntax (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaqz authored Sep 21, 2023
1 parent 1fa1e1c commit c706b87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zip.jl
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,6 @@ macro implement_zip(t)

Base.zip(::$t, x, xs...) = $_zip_error()
Base.zip(x, ::$t, xs...) = $_zip_error()
Base.zip($t, ::$t, xs...) = $_zip_error()
Base.zip(::$t, ::$t, xs...) = $_zip_error()
end
end

0 comments on commit c706b87

Please sign in to comment.