Mercurial > repos > public > sbplib_julia
changeset 771:d0c1d0b4da52 operator_storage_array_of_table
Fix type in call to get_stencil_set
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Thu, 15 Jul 2021 00:19:27 +0200 |
parents | 80d5717ad2f9 |
children | bea2feebbeca |
files | src/SbpOperators/readoperator.jl |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/SbpOperators/readoperator.jl Thu Jul 15 00:18:55 2021 +0200 +++ b/src/SbpOperators/readoperator.jl Thu Jul 15 00:19:27 2021 +0200 @@ -32,7 +32,7 @@ The stencil set is not parsed beyond the inital toml parse. To get usable stencils use the `parse_stencil` functions on the fields of the stencil set. """ -read_stencil_set(fn; filters...) = get_stencil_set(TOML.parsefile(fn), filters...) +read_stencil_set(fn; filters...) = get_stencil_set(TOML.parsefile(fn); filters...) """ get_stencil_set(parsed_toml; filters...)