Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-09-01 14:41:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-09-02 04:08:38 +0300
commitf8dd0d0dba748035706382f0c5700bb23e5a9048 (patch)
tree8af00f20a77a8ff3108cc5eb729ad93f87b30421 /source/blender/python/generic
parent42546db49089eba5543af00ea08f8075ac98d743 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/python/generic')
-rw-r--r--source/blender/python/generic/idprop_py_ui_api.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/python/generic/idprop_py_ui_api.c b/source/blender/python/generic/idprop_py_ui_api.c
index 82ccf619ec0..c194c77aa7f 100644
--- a/source/blender/python/generic/idprop_py_ui_api.c
+++ b/source/blender/python/generic/idprop_py_ui_api.c
@@ -183,7 +183,7 @@ static bool idprop_ui_data_update_int(IDProperty *idprop, PyObject *args, PyObje
}
}
- /* Write back to the proeprty's UI data. */
+ /* Write back to the properties UI data. */
IDP_ui_data_free_unique_contents(&ui_data_orig->base, IDP_ui_data_type(idprop), &ui_data.base);
*ui_data_orig = ui_data;
return true;
@@ -310,7 +310,7 @@ static bool idprop_ui_data_update_float(IDProperty *idprop, PyObject *args, PyOb
}
}
- /* Write back to the proeprty's UI data. */
+ /* Write back to the properties UI data. */
IDP_ui_data_free_unique_contents(&ui_data_orig->base, IDP_ui_data_type(idprop), &ui_data.base);
*ui_data_orig = ui_data;
return true;
@@ -348,7 +348,7 @@ static bool idprop_ui_data_update_string(IDProperty *idprop, PyObject *args, PyO
ui_data.default_value = BLI_strdup(default_value);
}
- /* Write back to the proeprty's UI data. */
+ /* Write back to the properties UI data. */
IDP_ui_data_free_unique_contents(&ui_data_orig->base, IDP_ui_data_type(idprop), &ui_data.base);
*ui_data_orig = ui_data;
return true;
@@ -376,7 +376,7 @@ static bool idprop_ui_data_update_id(IDProperty *idprop, PyObject *args, PyObjec
return false;
}
- /* Write back to the proeprty's UI data. */
+ /* Write back to the properties UI data. */
IDP_ui_data_free_unique_contents(&ui_data_orig->base, IDP_ui_data_type(idprop), &ui_data.base);
*ui_data_orig = ui_data;
return true;