From ef6d6d4f40a39dd3a0748437a1fb42903c6033ab Mon Sep 17 00:00:00 2001
From: Campbell Barton <ideasman42@gmail.com>
Date: Thu, 8 Dec 2022 14:05:48 +1100
Subject: [PATCH] Cleanup: spelling in comments

---
 check_blender_release/check_static_binaries.py | 2 +-
 utils_api/bpy_introspect_ui.py                 | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/check_blender_release/check_static_binaries.py b/check_blender_release/check_static_binaries.py
index e72b0a2..4fbbcf0 100644
--- a/check_blender_release/check_static_binaries.py
+++ b/check_blender_release/check_static_binaries.py
@@ -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!
diff --git a/utils_api/bpy_introspect_ui.py b/utils_api/bpy_introspect_ui.py
index 89dc883..ba83704 100644
--- a/utils_api/bpy_introspect_ui.py
+++ b/utils_api/bpy_introspect_ui.py
@@ -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")
-- 
GitLab