Skip to content

Commit b52aae8

Browse files
committed
Fix accidental splatting of keyword arguments into get_cheb_coefficients as regular arguments.
1 parent 69cd526 commit b52aae8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/function_hashing/chebhash.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Hash computation
9191
===============#
9292

9393
function (hashfn::ChebHash{:Chebyshev})(f; kws...)
94-
coeff = get_cheb_coefficients(hashfn.interval, f, kws...)
94+
coeff = get_cheb_coefficients(hashfn.interval, f; kws...)
9595
hashfn.discrete_hashfn(coeff)
9696
end
9797

0 commit comments

Comments
 (0)