Skip to content

Commit c204fad

Browse files
authored
Merge pull request #37 from SamRodkey/bugfix/Issue-36-correction
Fixes typo in fieldname for PrcException, fixes #36
2 parents 56b4aea + 8254551 commit c204fad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/process.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function _loop(p::Prc, cycles::T) where {T<:Number}
3636
p.f(p.clk, p.arg...; p.kw...)
3737
catch exc
3838
if isa(exc, PrcException)
39-
exc.ev == Stop() && break
39+
exc.event == Stop() && break
4040
end
4141
rethrow(exc)
4242
end

0 commit comments

Comments
 (0)