style cleanup - spelling corrections & update some incorrect comments.

This commit is contained in:
Campbell Barton
2012-03-03 11:45:08 +00:00
parent 1f928833f3
commit 9d49fa0e63
39 changed files with 86 additions and 83 deletions

View File

@@ -324,7 +324,7 @@ static PyObject * plot (PyImage * self, PyObject * args)
if (PyArg_ParseTuple(args, "s*hhhh|h:plot", &buffer, &width, &height, &x, &y, &mode))
{
// correct decoding, verify that buffer size is correct
// we need a continous memory buffer
// we need a continuous memory buffer
if (testPyBuffer(&buffer, width, height, 4))
{
getImageBuff(self)->plot((unsigned char*)buffer.buf, width, height, x, y, mode);