py-cvec.c: improved documentation
authorPaul Brossier <piem@piem.org>
Fri, 25 Dec 2009 04:04:59 +0000 (05:04 +0100)
committerPaul Brossier <piem@piem.org>
Fri, 25 Dec 2009 04:04:59 +0000 (05:04 +0100)
interfaces/python/py-cvec.c

index 387e671e4f9d8ff35924fa3809f8ed50a1fdff2c..5de5175c736e2a6d60fad8a3c4aced04b8c7c4dd 100644 (file)
@@ -251,10 +251,10 @@ static PyMethodDef Py_cvec_methods[] = {
 
 static PyGetSetDef Py_cvec_getseters[] = {
   {"norm", (getter)Py_cvec_get_norm, (setter)Py_cvec_set_norm, 
-      "Content of the magnitude of this cvec",
+      "Numpy vector of shape (length,) containing the magnitude",
       NULL},
   {"phas", (getter)Py_cvec_get_phas, (setter)Py_cvec_set_phas, 
-      "Content of the magnitude of this cvec",
+      "Numpy vector of shape (length,) containing the phase",
       NULL},
   {NULL} /* sentinel */
 };