Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #168

Merged
merged 1 commit into from Apr 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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