Cleanup: spelling in comments (make check_spelling_*)

This commit is contained in:
Campbell Barton
2025-06-19 00:10:18 +00:00
parent 5e5c51215a
commit 41bf2f598f
3 changed files with 3 additions and 3 deletions

View File

@@ -364,7 +364,7 @@ def update_render_engine(self, context):
def update_world(self, context): def update_world(self, context):
# Force a depsgraph update, because add-on properties dont. # Force a depsgraph update, because add-on properties don't.
# (at least not from the UI, see #138071) # (at least not from the UI, see #138071)
context.scene.world.update_tag() context.scene.world.update_tag()

View File

@@ -2341,7 +2341,7 @@ static wmOperatorStatus constraint_add_exec(
/* get the target objects, adding them as need be */ /* get the target objects, adding them as need be */
if (get_new_constraint_target(C, type, &tar_ob, &tar_pchan, true)) { if (get_new_constraint_target(C, type, &tar_ob, &tar_pchan, true)) {
/* Armature constraints dont have a target by default, add one. */ /* Armature constraints don't have a target by default, add one. */
if (type == CONSTRAINT_TYPE_ARMATURE) { if (type == CONSTRAINT_TYPE_ARMATURE) {
bArmatureConstraint *acon = static_cast<bArmatureConstraint *>(con->data); bArmatureConstraint *acon = static_cast<bArmatureConstraint *>(con->data);
bConstraintTarget *ct = MEM_callocN<bConstraintTarget>("Constraint Target"); bConstraintTarget *ct = MEM_callocN<bConstraintTarget>("Constraint Target");

View File

@@ -473,7 +473,7 @@ def write_release_log(path, release_log, c, cat, rstate, rstate_list):
"branch), only fixes of issues which already existed in previous official releases are " "branch), only fixes of issues which already existed in previous official releases are "
"listed here. Fixes for regressions introduced since last release, or for new " "listed here. Fixes for regressions introduced since last release, or for new "
"features, are '''not''' listed here.<br/>For following RCs and final release, " "features, are '''not''' listed here.<br/>For following RCs and final release, "
"'''all''' backported fixes are listed.}}", IGNORE_END_LINE)) "'''all''' back-ported fixes are listed.}}", IGNORE_END_LINE))
f.write("\n".join(lines)) f.write("\n".join(lines))
f.write("\n") f.write("\n")