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

Cleanup: spelling

parent 431926d3
Branches
Tags
No related merge requests found
...@@ -1175,7 +1175,7 @@ def quick_check_indentation(fn, lines): ...@@ -1175,7 +1175,7 @@ def quick_check_indentation(fn, lines):
# * middle of multi line comment block # * middle of multi line comment block
elif ls.startswith("* "): elif ls.startswith("* "):
skip = True skip = True
# exclude muli-line defines # exclude multi-line defines
elif ls.endswith("\\") or ls.endswith("(void)0") or ls_prev.endswith("\\"): elif ls.endswith("\\") or ls.endswith("(void)0") or ls_prev.endswith("\\"):
skip = True skip = True
......
...@@ -149,7 +149,7 @@ class BlendFile: ...@@ -149,7 +149,7 @@ class BlendFile:
if not self.structs: if not self.structs:
raise BlendFileError("No DNA1 block in file, this is not a valid .blend file!") 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'} self.block_from_offset = {block.addr_old: block for block in self.blocks if block.code != b'ENDB'}
def __repr__(self): def __repr__(self):
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
# #
# ##### RNA MANUAL REFERENCES ##### # ##### 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 # for the context menu documentation access
# #
# To make international, we made a script, # To make international, we made a script,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment