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

Cleanup: spelling

parent 8bb3c518
No related branches found
No related tags found
No related merge requests found
...@@ -496,7 +496,7 @@ class BlendFileBlock: ...@@ -496,7 +496,7 @@ class BlendFileBlock:
file load & save (i.e. it does not changes due to pointer addresses variations). file load & save (i.e. it does not changes due to pointer addresses variations).
""" """
# TODO This implementation is most likely far from optimal... and CRC32 is not renown as the best hashing # TODO This implementation is most likely far from optimal... and CRC32 is not renown as the best hashing
# algo either. But for now does the job! # algorithm either. But for now does the job!
import zlib import zlib
def _is_pointer(self, k): def _is_pointer(self, k):
...@@ -878,7 +878,7 @@ class DNA_IO: ...@@ -878,7 +878,7 @@ class DNA_IO:
return cls.read_float(handle, header) return cls.read_float(handle, header)
elif dna_type_id == b'char': elif dna_type_id == b'char':
if dna_size == 1 and array_size <= 1: if dna_size == 1 and array_size <= 1:
# Single char, assume it's bitflag or int value, and not a string/bytes data... # Single char, assume it's bit-flag or int value, and not a string/bytes data.
return cls.read_char(handle, header) return cls.read_char(handle, header)
if use_str: if use_str:
if use_str_nil: if use_str_nil:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment