Fixed some typos, courtesy of codespell

This commit is contained in:
Tobias Brunner
2023-11-14 10:11:16 +01:00
parent 02a4c8cfa9
commit 14bd0bc743
14 changed files with 16 additions and 16 deletions
+2 -2
View File
@@ -133,7 +133,7 @@ chunk_t *chunk_map(char *path, bool wr);
/**
* munmap() a chunk previously mapped with chunk_map().
*
* When unmapping a writeable map, the return value should be checked to
* When unmapping a writable map, the return value should be checked to
* ensure changes landed on disk.
*
* @param chunk pointer returned from chunk_map()
@@ -146,7 +146,7 @@ bool chunk_unmap(chunk_t *chunk);
*
* @note Writable maps (i.e. created with wr = TRUE) are NOT cleared.
*
* When unmapping a writeable map, the return value should be checked to
* When unmapping a writable map, the return value should be checked to
* ensure changes landed on disk.
*
* @param chunk pointer returned from chunk_map()
+1 -1
View File
@@ -120,7 +120,7 @@ void utils_deinit();
#endif
/**
* Address santizer support
* Address sanitizer support
*/
#if __has_feature(address_sanitizer) || \
(defined(__GNUC__) && defined(__SANITIZE_ADDRESS__))