Cleanup: spelling in comments

This commit is contained in:
Campbell Barton
2022-12-08 14:05:48 +11:00
parent f021b4b3c9
commit ef6d6d4f40
2 changed files with 3 additions and 3 deletions

View File

@ -118,7 +118,7 @@ def stripLibraryABI(lib_name):
"""
Strip ABI suffix from .so file
Example; libexample.so.1.0 => libexample.so
Example; ``libexample.so.1.0`` => ``libexample.so``.
"""
lib_name_no_abi = lib_name
# TODO(sergey): Optimize this!

View File

@ -351,10 +351,10 @@ def fake_helper():
def fake_runtime():
"""Only call this before `draw()` functions."""
# Misc Subclasses
# Misc Sub-classes
bpy.types.EffectSequence = type("EffectSequence", (), {})
# Operator Subclases
# Operator Sub-classes.
bpy.types.WM_OT_doc_view = type("WM_OT_doc_view", (), {"_prefix": ""})
bpy.data = module_add("bpy.data")