From c93bddf9a03493ed31ffc4047ccf967898db905d Mon Sep 17 00:00:00 2001 From: Nick Curtis Date: Thu, 29 Nov 2018 20:31:49 -0500 Subject: [PATCH] Fix #578 --- interfaces/cython/cantera/thermo.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interfaces/cython/cantera/thermo.pyx b/interfaces/cython/cantera/thermo.pyx index 33c2c2db9..d30bc8683 100644 --- a/interfaces/cython/cantera/thermo.pyx +++ b/interfaces/cython/cantera/thermo.pyx @@ -581,7 +581,7 @@ cdef class ThermoPhase(_SolutionBase): >>> gas.mole_fraction_dict() {'CH4': 0.049900199, 'N2': 0.750499001, 'O2': 0.199600798} - >>> gas.set_equivalence_ratio(1.2, {'NH3;:0.8, 'CO':0.2}, 'O2:1.0') + >>> gas.set_equivalence_ratio(1.2, {'NH3':0.8, 'CO':0.2}, 'O2:1.0') >>> gas.mole_fraction_dict() {'CO': 0.1263157894, 'NH3': 0.505263157, 'O2': 0.36842105}