From 9c7a0b4cb0dd0165c71511df1ada5a1c44bb870f Mon Sep 17 00:00:00 2001 From: Lilith Hafner Date: Sat, 23 Sep 2023 15:53:36 -0500 Subject: [PATCH] Fix capitalization in comment --- ext/PyCallExt.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/PyCallExt.jl b/ext/PyCallExt.jl index 02d37d632b..258e2bf205 100644 --- a/ext/PyCallExt.jl +++ b/ext/PyCallExt.jl @@ -3,7 +3,7 @@ module PyCallExt using PyCall: PyCall, PyObject, PyAny, pyfunctionret, pyimport, hasproperty using SciMLBase: SciMLBase, solve -# SciMl uses a function's arity (number of arguments) to determine if it operates in place. +# SciML uses a function's arity (number of arguments) to determine if it operates in place. # PyCall does not preserve arity, so we inspect Python functions to find their arity. function SciMLBase.numargs(f::PyObject) inspect = pyimport("inspect")