File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ To throw an error if any warnings occur inside any functions, set
26
26
27
27
To throw an error if any warnings occur inside any functions EXCEPT for a
28
28
certain set of functions, list the exceptions in the `except` variable,
29
- for example `except=[f, g,h]`
29
+ for example `except=[g,h]`
30
30
"""
31
31
function check (f; nowarn= Any[], except= Any[], kwargs... )
32
32
if ! isempty (except) # if `except` is provided, we ignore the value of `nowarn`
@@ -71,7 +71,7 @@ To throw an error if any warnings occur inside any functions, set
71
71
72
72
To throw an error if any warnings occur inside any functions EXCEPT for a
73
73
certain set of functions, list the exceptions in the `except` variable,
74
- for example `except=[f, g,h]`
74
+ for example `except=[g,h]`
75
75
"""
76
76
macro check (expr, args... )
77
77
quote
You can’t perform that action at this time.
0 commit comments