Cleanup: correct naming of struct member comments

Also reduce right-shift for DupliGenerator declarations.
This commit is contained in:
Campbell Barton
2023-04-14 14:26:42 +10:00
parent 26aa1b1367
commit dc1b36f288
16 changed files with 29 additions and 24 deletions

View File

@@ -649,7 +649,7 @@ static PySequenceMethods Euler_SeqMethods = {
};
static PyMappingMethods Euler_AsMapping = {
/*mp_len*/ (lenfunc)Euler_len,
/*mp_length*/ (lenfunc)Euler_len,
/*mp_subscript*/ (binaryfunc)Euler_subscript,
/*mp_ass_subscript*/ (objobjargproc)Euler_ass_subscript,
};