From 077f4f924fe3cd0afd9e33143d5f9d76fe828595 Mon Sep 17 00:00:00 2001
From: Campbell Barton <ideasman42@gmail.com>
Date: Sun, 18 Aug 2019 02:44:10 +1000
Subject: [PATCH] Cleanup: spelling

---
 check_source/check_style_c.py             | 2 +-
 modules/blendfile.py                      | 2 +-
 utils_doc/rna_manual_reference_updater.py | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/check_source/check_style_c.py b/check_source/check_style_c.py
index 606a7f6..2f562ab 100755
--- a/check_source/check_style_c.py
+++ b/check_source/check_style_c.py
@@ -1175,7 +1175,7 @@ def quick_check_indentation(fn, lines):
             # * middle of multi line comment block
             elif ls.startswith("* "):
                 skip = True
-            # exclude muli-line defines
+            # exclude multi-line defines
             elif ls.endswith("\\") or ls.endswith("(void)0") or ls_prev.endswith("\\"):
                 skip = True
 
diff --git a/modules/blendfile.py b/modules/blendfile.py
index c612cc9..9967894 100644
--- a/modules/blendfile.py
+++ b/modules/blendfile.py
@@ -149,7 +149,7 @@ class BlendFile:
         if not self.structs:
             raise BlendFileError("No DNA1 block in file, this is not a valid .blend file!")
 
-        # cache (could lazy init, incase we never use?)
+        # Cache (could lazy init, in case we never use?).
         self.block_from_offset = {block.addr_old: block for block in self.blocks if block.code != b'ENDB'}
 
     def __repr__(self):
diff --git a/utils_doc/rna_manual_reference_updater.py b/utils_doc/rna_manual_reference_updater.py
index 3d18da9..34da110 100644
--- a/utils_doc/rna_manual_reference_updater.py
+++ b/utils_doc/rna_manual_reference_updater.py
@@ -18,7 +18,7 @@
 #
 # ##### RNA MANUAL REFERENCES #####
 #
-# This file geneates a file that maps RNA strings to online URL's
+# This file generates a file that maps RNA strings to online URL's
 # for the context menu documentation access
 #
 # To make international, we made a script,
-- 
GitLab