Skip to content

Commit

Permalink
fix typos (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
schillic committed Apr 10, 2024
1 parent eef9b49 commit e840b99
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/validatedODEs.jl
Expand Up @@ -664,11 +664,11 @@ function _validated_integ!(f!, t0::T, tmax::T, orderT::Int,
red_abstol = min(abstol, 10*red_abstol)
end

# If the integration step is unsuccessfull, break with a warning; note that the
# last integration step (which was not successfull) is returned
# If the integration step is unsuccessful, break with a warning; note that the
# last integration step (which was not successful) is returned
if !_success
@warn("""
Exiting due to unsuccessfull step
Exiting due to unsuccessful step
""", _success, t0)
break
end
Expand Down Expand Up @@ -757,11 +757,11 @@ function _validated_integ!(f!, t0::T, tmax::T, orderT::Int,
red_abstol = min(abstol, 10*red_abstol)
end

# If the integration step is unsuccessfull, break with a warning; note that the
# last integration step (which was not successfull) is returned
# If the integration step is unsuccessful, break with a warning; note that the
# last integration step (which was not successful) is returned
if !_success
@warn("""
Exiting due to unsuccessfull step
Exiting due to unsuccessful step
""", _success, t0)
break
end
Expand Down Expand Up @@ -1082,11 +1082,11 @@ function _validated_integ2!(f!, t0::T, tf::T, orderT::Int, x, dx, rv,
red_abstol = min(abstol, 10*red_abstol)
end

# If the integration step is unsuccessfull, break with a warning; note that the
# last integration step (which was not successfull) is returned
# If the integration step is unsuccessful, break with a warning; note that the
# last integration step (which was not successful) is returned
if !_success
@warn("""
Exiting due to unsuccessfull step
Exiting due to unsuccessful step
""", _success, t0)
break
end
Expand Down Expand Up @@ -1211,11 +1211,11 @@ function _validated_integ2!(f!, t0::T, tf::T, orderT::Int, x, dx,
red_abstol = min(abstol, 10*red_abstol)
end

# If the integration step is unsuccessfull, break with a warning; note that the
# last integration step (which was not successfull) is returned
# If the integration step is unsuccessful, break with a warning; note that the
# last integration step (which was not successful) is returned
if !_success
@warn("""
Exiting due to unsuccessfull step
Exiting due to unsuccessful step
""", _success, t0)
break
end
Expand Down

0 comments on commit e840b99

Please sign in to comment.