diff --git a/README.md b/README.md index cd60427..6f4711f 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ ModelOrderReduction.jl is a package for automatically reducing the computational complexity of mathematical models, while keeping expected fidelity within a controlled error bound. -These methods function a submodel with a projection -where solving the smaller model gives approximation information about the full model. +These methods construct a submodel via a projection +where solving the smaller model gives approximate information about the full model. MOR.jl uses [ModelingToolkit.jl](https://docs.sciml.ai/ModelingToolkit/stable/) as a system description and automatically transforms equations to the subform, defining the observables to automatically lazily reconstruct the full diff --git a/src/utils.jl b/src/utils.jl index 2e6bfca..fddcff8 100644 --- a/src/utils.jl +++ b/src/utils.jl @@ -28,7 +28,7 @@ end """ $(SIGNATURES) -Returns `true` is `expr` contains variables in `dvs` only and does not contain `iv`. +Returns `true` if `expr` contains variables in `dvs` only and does not contain `iv`. """ function only_dvs(expr, dvs, iv)