From 3d512996f69995d22de047ff57c60cf8d31af081 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Wed, 30 Jan 2013 22:05:57 +0000 Subject: [PATCH] [Cython] Fixed a documentation error in ThermoPhase --- interfaces/cython/cantera/thermo.pyx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/interfaces/cython/cantera/thermo.pyx b/interfaces/cython/cantera/thermo.pyx index e9191f1f2..08c7949c2 100644 --- a/interfaces/cython/cantera/thermo.pyx +++ b/interfaces/cython/cantera/thermo.pyx @@ -263,9 +263,9 @@ cdef class ThermoPhase(_SolutionBase): Get/Set the species mole fractions. Can be set as either an array or as a string. Always returns an array:: - >>> phase.Y = [0.1, 0, 0, 0.4, 0, 0, 0, 0, 0.5] - >>> phase.Y = 'H2:0.1, O2:0.4, AR:0.5' - >>> phase.Y + >>> phase.X = [0.1, 0, 0, 0.4, 0, 0, 0, 0, 0.5] + >>> phase.X = 'H2:0.1, O2:0.4, AR:0.5' + >>> phase.X array([0.1, 0, 0, 0.4, 0, 0, 0, 0, 0.5]) """