From 56195cc67d831904f1f91c3c5de552f50b74be1a Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Sun, 3 May 2015 20:10:08 -0400 Subject: [PATCH] [Python] Fix a typo in the name of class 'CoverageDependency' --- interfaces/cython/cantera/reaction.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interfaces/cython/cantera/reaction.pyx b/interfaces/cython/cantera/reaction.pyx index 39b67761b..0951f25a8 100644 --- a/interfaces/cython/cantera/reaction.pyx +++ b/interfaces/cython/cantera/reaction.pyx @@ -399,7 +399,7 @@ cdef class ChebyshevReaction(Reaction): r.rate = CxxChebyshevRate(Tmin, Tmax, Pmin, Pmax, data) -cdef class CoverageDepenency: +cdef class CoverageDependency: cdef public double a cdef public double m cdef public double E @@ -420,7 +420,7 @@ cdef class InterfaceReaction(ElementaryReaction): deps = {} cdef pair[string,CxxCoverageDependency] item for item in r.coverage_deps: - deps[pystr(item.first)] = CoverageDepenency( + deps[pystr(item.first)] = CoverageDependency( item.second.a, item.second.m, item.second.E * gas_constant) return deps