From 2d623e893e4cb0e310f5954d21ea8feb9c8600a7 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Thu, 10 Nov 2016 14:04:20 -0500 Subject: [PATCH] [Python] Fix documentation for Sim1D.set_steady_callback --- interfaces/cython/cantera/onedim.pyx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/interfaces/cython/cantera/onedim.pyx b/interfaces/cython/cantera/onedim.pyx index be2acc3af..50001e3d4 100644 --- a/interfaces/cython/cantera/onedim.pyx +++ b/interfaces/cython/cantera/onedim.pyx @@ -571,9 +571,9 @@ cdef class Sim1D: def set_steady_callback(self, f): """ - Set a callback function to be called after each successful timestep. - The signature of *f* is `float f(float)`. The argument passed to *f* is - "0" and the output is ignored. + Set a callback function to be called after each successful steady-state + solve, before regridding. The signature of *f* is `float f(float)`. The + argument passed to *f* is "0" and the output is ignored. """ if not isinstance(f, Func1): f = Func1(f)