Skip to content

Commit

Permalink
Merge pull request #95 from JuliaReach/schillic/spellcheck
Browse files Browse the repository at this point in the history
Spell check
  • Loading branch information
schillic authored Nov 3, 2023
2 parents 9c943df + ef5c9f8 commit e8b44ca
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 4 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/SpellCheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Spell Check

on: [pull_request]

jobs:
typos-check:
name: check spelling
runs-on: ubuntu-latest
steps:
- name: Checkout Actions Repository
uses: actions/checkout@v4
- name: Check spelling
uses: crate-ci/typos@master
3 changes: 3 additions & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[default.extend-words]
# do not correct the following strings:
fom = "fom"
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ makedocs(; sitename="ReachabilityModels",
"Building" => "models/building.md",
"CD Player" => "models/cdplayer.md",
"Crane" => "models/crane.md",
"Elipse" => "models/elipse.md",
"Ellipse" => "models/ellipse.md",
"Five Dim System" => "models/five_dim_sys.md",
"Fom" => "models/fom.md",
"Heat" => "models/heat.md",
Expand Down
4 changes: 2 additions & 2 deletions src/models/elipse/elipse.jl → src/models/ellipse/ellipse.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# # Elipse
# # Ellipse

# ## Model

module elipse #jl
module ellipse #jl

using ReachabilityAnalysis

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Z0 = α * X0₁ + (1 - α) * X0₂;

Dict(["opts" => Dict(:T => 15.0, :alg => GLGM06(; δ=0.05)),
"X0" => Z0,
"info" => Dict("name" => "elipse",
"info" => Dict("name" => "ellipse",
"dim" => 2,
"linear" => true,
"hybrid" => false)])

0 comments on commit e8b44ca

Please sign in to comment.