diff src/SbpOperators/readoperator.jl @ 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 7c87a33963c5
children f6e56d5dbc17
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...)