Skip to content

Commit da6f9a0

Browse files
Apply suggestions from code review
Co-authored-by: Penelope Yong <[email protected]>
1 parent e66e6ae commit da6f9a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/context_implementations.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ end
316316
function dot_tilde_assume(context::FixedContext, right, left, vns, vi)
317317
if !has_fixed_symbol(context, first(vns))
318318
# Defer to `childcontext`.
319-
return tilde_assume(childcontext(context), right, left, vns, vi)
319+
return dot_tilde_assume(childcontext(context), right, left, vns, vi)
320320
end
321321

322322
# If we're reached here, then we didn't hit the initial `getfixed` call in the model body.
@@ -350,7 +350,7 @@ function dot_tilde_assume(
350350
)
351351
if !has_fixed_symbol(context, first(vns))
352352
# Defer to `childcontext`.
353-
return tilde_assume(rng, childcontext(context), sampler, right, left, vns, vi)
353+
return dot_tilde_assume(rng, childcontext(context), sampler, right, left, vns, vi)
354354
end
355355
# If we're reached here, then we didn't hit the initial `getfixed` call in the model body.
356356
# So we need to check each of the vns.

0 commit comments

Comments
 (0)