Cleanup: Spelling: "Explicitly"

This commit is contained in:
Aaron Carlisle
2025-01-03 22:33:33 -05:00
parent 38ce90da59
commit 1bcc01519a
4 changed files with 10 additions and 10 deletions

View File

@@ -891,7 +891,7 @@ mark_as_advanced(WITH_SYSTEM_PYTHON_TESTS)
# which may differ from the OS default python version.
# And it would set that global 'python3 exec path' CMake value for all CMake scripts, which could have
# unexpected and dangerous side effects.
# So this has to be set explicitely for all builders.
# So this has to be set explicitly for all builders.
set(TEST_SYSTEM_PYTHON_EXE "" CACHE PATH "Python executable used to run 'system python' tests")
mark_as_advanced(TEST_SYSTEM_PYTHON_EXE)

View File

@@ -26,7 +26,7 @@ blender --background --factory-startup --python doc/python_api/sphinx_changelog_
# Api comparison can also run without blender,
# will by default generate changeloig between the last two available versions listed in the index,
# unless input files are provided explicitely:
# unless input files are provided explicitly:
python doc/python_api/sphinx_changelog_gen.py -- \
--indexpath="path/to/api/docs/api_dump_index.json" \
changelog --filepath-in-from blender_api_2_63_0.json \

View File

@@ -1110,7 +1110,7 @@ static const char arg_handle_disable_depsgraph_on_file_load_doc[] =
"\tBackround mode: Do not systematically build and evaluate ViewLayers' dependency graphs\n"
"\twhen loading a blendfile in background mode (`-b` or `-c` options).\n"
"\n"
"\tScripts requiring evaluated data then need to explicitely ensure that\n"
"\tScripts requiring evaluated data then need to explicitly ensure that\n"
"\tan evaluated depsgraph is available\n"
"\t(e.g. by calling `depsgraph = context.evaluated_depsgraph_get()`).\n"
"\n"

View File

@@ -263,7 +263,7 @@ class TestBlendLibLinkIndirect(TestBlendLibLinkHelper):
assert mesh.library is not None
assert mesh.use_fake_user is False
assert mesh.users == 0
# IDs explicitely linked by the user are forcefully considered directly linked.
# IDs explicitly linked by the user are forcefully considered directly linked.
assert mesh.is_library_indirect is False
ob = bpy.data.objects.new("LocalMesh", mesh)
@@ -685,7 +685,7 @@ class TestBlendLibDataLibrariesLoadLibOverride(TestBlendLibDataLibrariesLoad):
assert bpy.data.objects[-1].library is not None
assert bpy.data.collections[-1].library is not None
# Only explicitely linked data gets a liboverride, without any handling of hierarchy/dependencies.
# Only explicitly linked data gets a liboverride, without any handling of hierarchy/dependencies.
assert bpy.data.collections[0].library is None
assert bpy.data.collections[0].is_runtime_data is False
assert bpy.data.collections[0].override_library is not None
@@ -703,7 +703,7 @@ class TestBlendLibDataLibrariesLoadLibOverride(TestBlendLibDataLibrariesLoad):
assert bpy.data.objects[-1].library is not None
assert bpy.data.collections[-1].library is not None
# Only explicitely linked data gets a liboverride, without any handling of hierarchy/dependencies.
# Only explicitly linked data gets a liboverride, without any handling of hierarchy/dependencies.
assert bpy.data.collections[1].library is None
assert bpy.data.collections[1].is_runtime_data is False
assert bpy.data.collections[1].override_library is not None
@@ -721,7 +721,7 @@ class TestBlendLibDataLibrariesLoadLibOverride(TestBlendLibDataLibrariesLoad):
assert bpy.data.objects[-1].library is not None
assert bpy.data.collections[-1].library is not None
# Only explicitely linked data gets a liboverride, without any handling of hierarchy/dependencies.
# Only explicitly linked data gets a liboverride, without any handling of hierarchy/dependencies.
assert bpy.data.collections[1].library is None
assert bpy.data.collections[1].is_runtime_data is False
assert bpy.data.collections[1].override_library is not None
@@ -742,7 +742,7 @@ class TestBlendLibDataLibrariesLoadLibOverride(TestBlendLibDataLibrariesLoad):
assert bpy.data.objects[-1].library is not None
assert bpy.data.collections[-1].library is not None
# Only explicitely linked data gets a liboverride, without any handling of hierarchy/dependencies.
# Only explicitly linked data gets a liboverride, without any handling of hierarchy/dependencies.
assert bpy.data.collections[0].library is None
assert bpy.data.collections[0].is_runtime_data is True
assert bpy.data.collections[0].override_library is not None
@@ -764,7 +764,7 @@ class TestBlendLibDataLibrariesLoadLibOverride(TestBlendLibDataLibrariesLoad):
assert bpy.data.objects[-1].library is not None
assert bpy.data.collections[-1].library is not None
# Only explicitely linked data gets a liboverride, without any handling of hierarchy/dependencies.
# Only explicitly linked data gets a liboverride, without any handling of hierarchy/dependencies.
assert bpy.data.collections[0].library is None
assert bpy.data.collections[0].is_runtime_data is True
assert bpy.data.collections[0].override_library is not None
@@ -786,7 +786,7 @@ class TestBlendLibDataLibrariesLoadLibOverride(TestBlendLibDataLibrariesLoad):
assert bpy.data.objects[-1].library is not None
assert bpy.data.collections[-1].library is not None
# Only explicitely linked data gets a liboverride, without any handling of hierarchy/dependencies.
# Only explicitly linked data gets a liboverride, without any handling of hierarchy/dependencies.
assert bpy.data.collections[1].library is None
assert bpy.data.collections[1].is_runtime_data is False
assert bpy.data.collections[1].override_library is not None