Skip to content

Commit

Permalink
Merge pull request #1740 from JuliaRobotics/master
Browse files Browse the repository at this point in the history
typo
  • Loading branch information
dehann authored Jul 11, 2023
2 parents bc2b5a5 + 138a54f commit 1130222
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/entities/HypoRecipe.jl
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ function Base.isapprox(
a::HypoRecipe,
b::HypoRecipe
)
if !(isnothing(a.hypotheses) && isnothing(B.hypotheses))
if !(isnothing(a.hypotheses) && isnothing(b.hypotheses))
return isapprox(a.hypotheses.p, b.hypotheses.p)
end
if !(isnothing(a.certainhypo) && isnothing(B.certainhypo))
if !(isnothing(a.certainhypo) && isnothing(b.certainhypo))
return isapprox(a.certainhypo, b.certainhypo)
end

Expand Down

0 comments on commit 1130222

Please sign in to comment.