Skip to content
Snippets Groups Projects
Commit ef6d6d4f authored by Campbell Barton's avatar Campbell Barton
Browse files

Cleanup: spelling in comments

parent f021b4b3
No related branches found
No related tags found
No related merge requests found
...@@ -118,7 +118,7 @@ def stripLibraryABI(lib_name): ...@@ -118,7 +118,7 @@ def stripLibraryABI(lib_name):
""" """
Strip ABI suffix from .so file 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 lib_name_no_abi = lib_name
# TODO(sergey): Optimize this! # TODO(sergey): Optimize this!
......
...@@ -351,10 +351,10 @@ def fake_helper(): ...@@ -351,10 +351,10 @@ def fake_helper():
def fake_runtime(): def fake_runtime():
"""Only call this before `draw()` functions.""" """Only call this before `draw()` functions."""
# Misc Subclasses # Misc Sub-classes
bpy.types.EffectSequence = type("EffectSequence", (), {}) bpy.types.EffectSequence = type("EffectSequence", (), {})
# Operator Subclases # Operator Sub-classes.
bpy.types.WM_OT_doc_view = type("WM_OT_doc_view", (), {"_prefix": ""}) bpy.types.WM_OT_doc_view = type("WM_OT_doc_view", (), {"_prefix": ""})
bpy.data = module_add("bpy.data") bpy.data = module_add("bpy.data")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment