janitor: Go over our spell checking setup

* Extend the cspell word list
* Remove those extensions from individual source files
* white-list licenses and such as we should not meddle with those
* Fix spelling
This commit is contained in:
Tobias Hunger 2023-10-13 19:23:09 +02:00 committed by Tobias Hunger
parent ef39adce30
commit b12575a4c4
84 changed files with 236 additions and 219 deletions

View file

@ -152,7 +152,7 @@ mod allocator {
if align <= core::mem::size_of::<usize>() {
malloc(layout.size()) as *mut u8
} else {
// Ideally we'd use alligned_alloc, but that function caused heap corruption with esp-idf
// Ideally we'd use aligned_alloc, but that function caused heap corruption with esp-idf
let ptr = malloc(layout.size() + align) as *mut u8;
let shift = align - (ptr as usize % align);
let ptr = ptr.add(shift);