Skip to content

Commit f772369

Browse files
committed
[ci skip] Fix spelling errors\n\n- parametes -> parameters in lib/DataDrivenLux/test/candidate.jl\n- implict -> implicit in src/basis/build_function.jl\n- implict -> implicit in src/basis/type.jl\n- continouos -> continuous in lib/DataDrivenDMD/src/type.jl
1 parent 27ef219 commit f772369

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

lib/DataDrivenDMD/src/type.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Return the approximation of the discrete Koopman operator stored in `k`.
101101
"""
102102
operator(k::Koopman{<:Any, <:Any, <:Any, true}) = __get_K(k)
103103
function operator(k::Koopman{<:Any, <:Any, <:Any, false})
104-
throw(AssertionError("Koopman is continouos."))
104+
throw(AssertionError("Koopman is continuous."))
105105
end
106106

107107
"""_

lib/DataDrivenLux/test/candidate.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ using StableRNGs
3030
end
3131

3232
# Broken for now since NaNMath.sin doesnt work with IntervalArithmetic
33-
# @testset "Candidate with parametes" begin
33+
# @testset "Candidate with parameters" begin
3434
# fs = (exp,)
3535
# arities = (1,)
3636
# dag = LayeredDAG(1, 1, 1, arities, fs, skip = true)

src/basis/build_function.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function (f::DataDrivenFunction{false, true})(u::AbstractVector, p::P, t::Number
6060
_apply_function(f, __EMPTY_VECTOR, u, p, t, c)
6161
end
6262

63-
# With implict, without controls
63+
# With implicit, without controls
6464
function (f::DataDrivenFunction{true, false})(du::AbstractVector, u::AbstractVector, p::P,
6565
t::Number) where {
6666
P <:
@@ -100,7 +100,7 @@ function (f::DataDrivenFunction{false, true})(res::AbstractVector, u::AbstractVe
100100
_apply_function!(f, res, __EMPTY_VECTOR, u, p, t, c)
101101
end
102102

103-
# With implict, without controls
103+
# With implicit, without controls
104104
function (f::DataDrivenFunction{true, false})(res::AbstractVector, du::AbstractVector,
105105
u::AbstractVector, p::P,
106106
t::Number) where {

src/basis/type.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ function (b::Basis{false, true})(u::AbstractVector,
305305
f(u, p, t, c)
306306
end
307307

308-
# With implict, without controls
308+
# With implicit, without controls
309309
function (b::Basis{true, false})(du::AbstractVector, u::AbstractVector,
310310
p::P = parameters(b),
311311
t::Number = get_iv(b)) where {

0 commit comments

Comments
 (0)