Code cleanup: Runic formatting and typo fixes#38
Merged
ChrisRackauckas merged 3 commits intoJun 13, 2026
Conversation
Author
This was referenced Jun 13, 2026
`10.^[...]` is a parse error on all Julia 1.x versions; use `10.0 .^ [...]`. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com>
Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com>
Vendored Fortran sources, LICENSE.md, and generated example artifacts (tex/ipynb/mw) are excluded from the typos check; Fortran identifiers (contex, contro, implct, nd) and citation names (Stoer, Numer. Math.) are allowlisted. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com>
be779d8 to
2a411f0
Compare
Author
|
Rebased onto the merged #39 (now on Local verification before pushing:
CI on the rebased head is also green: format-check ✓, Spell Check ✓, Downgrade ✓, Tests ✓ (min/pre/1 on ubuntu + windows + macOS). 🤖 Generated with Claude Code |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is the split-out code half of #37 (the other half is the CI infrastructure PR — see cross-link below). It contains only changes that modify code/text content, with no CI or infrastructure changes.
What this PR contains
.jlfile insrc/,examples/,doc/,deps/, andtest/is reformatted to the canonical Runic style (Runic v1.7.0). No behavioral changes.10.^[...]syntax (valid only on Julia 0.x) is a parse error on every Julia 1.x. Fixed to the modern broadcast form so the example files actually parse._typos.tomlconfig. The_typos.toml:*.f,*.f90),LICENSE.md, and generated example artifacts (examples/AdvancedExamples/texFiles,*.ipynb,*.mw);contex,contro,implct,nd, theRTO-tokenized option) and author/journal names (Stoer,Numer. Math.).Untouched:
LICENSE.md, all vendored Fortran solver sources, and all author attributions are left exactly as-is.Local test evidence
All runs done locally via juliaup, fresh
Manifest.toml,Pkg.instantiate()+Pkg.build("ODEInterface")+Pkg.test():Testing ODEInterface tests passed(exit 0)Testing ODEInterface tests passed(exit 0)Enforcement tools on this branch:
--checkover all 56.jlfiles — clean (no reformatting needed)._typos.toml— clean (exit 0). Note:typosreports one false positive (seh) inappveyor.yml, a mingw toolchain path component;appveyor.ymlis untouched by this PR and is removed by the companion CI PR, so the SpellCheck workflow (which lives in the CI PR) is clean once that PR's appveyor.yml deletion lands.Related
CI infrastructure split into the companion PR (GitHub Actions, dependabot, TagBot, CompatHelper, compat bounds, README badges, Travis/AppVeyor removal). See the CI PR linked in the comments.
This PR should be ignored until reviewed by @ChrisRackauckas.
🤖 Generated with Claude Code