From 58542b8b57ae356275c0974116f467364ae699f3 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Tue, 3 Aug 2010 13:03:47 -0400 Subject: [PATCH] Fix swapped docstrings for CurvePlugin's DifferenceCommand and DerivativeCommand --- hooke/plugin/curve.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/hooke/plugin/curve.py b/hooke/plugin/curve.py index b517c0b..7621fc7 100644 --- a/hooke/plugin/curve.py +++ b/hooke/plugin/curve.py @@ -172,11 +172,7 @@ True if you want the column-naming header line. f.close() class DifferenceCommand (Command): - """Calculate the derivative (actually, the discrete differentiation) - of a curve data block. - - See :func:`hooke.util.calculus.derivative` for implementation - details. + """Calculate the difference between two blocks of data. """ def __init__(self, plugin): super(DifferenceCommand, self).__init__( @@ -213,7 +209,11 @@ Column of data block to differentiate. outqueue.put(out) class DerivativeCommand (Command): - """Calculate the difference between two blocks of data. + """Calculate the derivative (actually, the discrete differentiation) + of a curve data block. + + See :func:`hooke.util.calculus.derivative` for implementation + details. """ def __init__(self, plugin): super(DerivativeCommand, self).__init__( -- 2.26.2