Docs: doxy corrections

This commit is contained in:
2015-07-31 22:59:02 +10:00
parent 12b7850d4f
commit 03f00eb91d
10 changed files with 14 additions and 18 deletions

View File

@@ -435,9 +435,7 @@
/* -------------------------------------------------------------------- */
/** \name Forward Declarations
* \{ */
/* Forward Declarations */
static PyObject *Buffer_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
static PyObject *Method_ShaderSource(PyObject *self, PyObject *args);
@@ -452,8 +450,6 @@ static int Buffer_ass_slice(Buffer *self, int begin, int end, PyObject *seq);
static PyObject *Buffer_subscript(Buffer *self, PyObject *item);
static int Buffer_ass_subscript(Buffer *self, PyObject *item, PyObject *value);
/** \} */
/* -------------------------------------------------------------------- */
@@ -756,7 +752,7 @@ static PyObject *Buffer_new(PyTypeObject *UNUSED(type), PyObject *args, PyObject
return (PyObject *)buffer;
}
/*@ Buffer sequence methods */
/* Buffer sequence methods */
static int Buffer_len(Buffer *self)
{