Cleanup: spelling

This commit is contained in:
2021-03-18 09:35:12 +11:00
parent 0c58ad8a34
commit bb6765f28f
75 changed files with 116 additions and 108 deletions

View File

@@ -2093,7 +2093,7 @@ void RNA_def_property_string_default(PropertyRNA *prop, const char *value)
if (value == NULL) {
CLOG_ERROR(&LOG,
"\"%s.%s\", NULL string passed (dont call in this case).",
"\"%s.%s\", NULL string passed (don't call in this case).",
srna->identifier,
prop->identifier);
DefRNA.error = true;
@@ -2102,7 +2102,7 @@ void RNA_def_property_string_default(PropertyRNA *prop, const char *value)
if (!value[0]) {
CLOG_ERROR(&LOG,
"\"%s.%s\", empty string passed (dont call in this case).",
"\"%s.%s\", empty string passed (don't call in this case).",
srna->identifier,
prop->identifier);
DefRNA.error = true;

View File

@@ -1424,7 +1424,7 @@ static int rna_MeshPolygonStringPropertyLayer_data_length(PointerRNA *ptr)
return me->totpoly;
}
/* XXX, we dont have proper byte string support yet, so for now use the (bytes + 1)
/* XXX, we don't have proper byte string support yet, so for now use the (bytes + 1)
* bmesh API exposes correct python/byte-string access. */
void rna_MeshStringProperty_s_get(PointerRNA *ptr, char *value)
{