Cleanup: spelling in comments

This commit is contained in:
2022-11-02 10:14:37 +11:00
parent cc6f41f8a5
commit 889b3385b5
16 changed files with 22 additions and 21 deletions

View File

@@ -13,7 +13,7 @@ struct wmGizmoType;
extern "C" {
#endif
/* exposed to rna/wm api */
/* Exposed to RNA/WM API. */
void BPY_RNA_gizmo_wrapper(struct wmGizmoType *gzt, void *userdata);
void BPY_RNA_gizmogroup_wrapper(struct wmGizmoGroupType *gzgt, void *userdata);

View File

@@ -12,10 +12,11 @@ struct wmOperatorType;
extern "C" {
#endif
/* these are used for operator methods, used by bpy_operator.c */
/** These are used for operator methods, used by `bpy_operator.c`. */
PyObject *PYOP_wrap_macro_define(PyObject *self, PyObject *args);
/* exposed to rna/wm api */
/* Exposed to RNA/WM API. */
/**
* Generic function used by all Python defined operators
* it's passed as an argument to #WM_operatortype_append_ptr in for operator registration.