Cleanup: spelling

This commit is contained in:
2022-09-19 14:47:27 +10:00
parent 4baa6e57bd
commit 6424fbca94
85 changed files with 169 additions and 165 deletions

View File

@@ -6,7 +6,7 @@
* \ingroup pymathutils
*/
/* Can cast different mathutils types to this, use for generic funcs */
/* Can cast different mathutils types to this, use for generic functions. */
#include "BLI_compiler_attrs.h"
@@ -21,7 +21,7 @@ extern char BaseMathObject_owner_doc[];
((struct_name *)((base_type ? (base_type)->tp_alloc(base_type, 0) : \
_PyObject_GC_New(&(root_type)))))
/** BaseMathObject.flag */
/** #BaseMathObject.flag */
enum {
/**
* Do not own the memory used in this vector,
@@ -43,7 +43,7 @@ enum {
float *_data; \
/** If this vector references another object, otherwise NULL, *Note* this owns its reference */ \
PyObject *cb_user; \
/** Which user funcs do we adhere to, RNA, etc */ \
/** Which user functions do we adhere to, RNA, etc */ \
unsigned char cb_type; \
/** Sub-type: location, rotation... \
* to avoid defining many new functions for every attribute of the same type */ \