Skip to content

Commit 138a54f

Browse files
committed
typo
1 parent d9641a2 commit 138a54f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/entities/HypoRecipe.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ function Base.isapprox(
2525
a::HypoRecipe,
2626
b::HypoRecipe
2727
)
28-
if !(isnothing(a.hypotheses) && isnothing(B.hypotheses))
28+
if !(isnothing(a.hypotheses) && isnothing(b.hypotheses))
2929
return isapprox(a.hypotheses.p, b.hypotheses.p)
3030
end
31-
if !(isnothing(a.certainhypo) && isnothing(B.certainhypo))
31+
if !(isnothing(a.certainhypo) && isnothing(b.certainhypo))
3232
return isapprox(a.certainhypo, b.certainhypo)
3333
end
3434

0 commit comments

Comments
 (0)