Cleanup: spelling in comments, additional white space

This commit is contained in:
2022-06-07 14:53:20 +10:00
parent 243891104f
commit 263371dc4e
34 changed files with 78 additions and 73 deletions

View File

@@ -562,7 +562,7 @@ bool BLI_ghashutil_ptrcmp(const void *a, const void *b);
/**
* This function implements the widely used `djb` hash apparently posted
* by Daniel Bernstein to `comp.lang.c` some time ago. The 32 bit
* by Daniel Bernstein to `comp.lang.c` some time ago. The 32 bit
* unsigned hash value starts at 5381 and for each byte 'c' in the
* string, is updated: `hash = hash * 33 + c`.
* This function uses the signed value of each byte.