mirror of
https://github.com/blender/blender-dev-tools.git
synced 2025-07-23 05:19:35 +00:00
Cleanup: spelling in comments
This commit is contained in:
@ -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!
|
||||
|
@ -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")
|
||||
|
Reference in New Issue
Block a user