Cleanup: spelling in comments

This commit is contained in:
2022-01-06 13:54:52 +11:00
parent aa363ec2ae
commit 499fec6f79
114 changed files with 233 additions and 224 deletions

View File

@@ -453,8 +453,8 @@ static void rna_Curve_bevelObject_set(PointerRNA *ptr,
Object *ob = (Object *)value.data;
if (ob) {
/* if bevel object has got the save curve, as object, for which it's */
/* set as bevobj, there could be infinity loop in displist calculation */
/* If bevel object has got the save curve, as object, for which it's set as bevobj,
* there could be infinity loop in #DispList calculation. */
if (ob->type == OB_CURVE && ob->data != cu) {
cu->bevobj = ob;
id_lib_extern((ID *)ob);
@@ -528,8 +528,8 @@ static void rna_Curve_taperObject_set(PointerRNA *ptr,
Object *ob = (Object *)value.data;
if (ob) {
/* if taper object has got the save curve, as object, for which it's */
/* set as bevobj, there could be infinity loop in displist calculation */
/* If taper object has got the save curve, as object, for which it's set as bevobj,
* there could be infinity loop in #DispList calculation. */
if (ob->type == OB_CURVE && ob->data != cu) {
cu->taperobj = ob;
id_lib_extern((ID *)ob);