Fix misc formatting issues

Somehow I missed the failing CI report from trailing whitespace.

Fixed a couple typos found by codespell while at it, and misc
trailing semicolons in one of the files.
This commit is contained in:
Rémi Verschelde
2022-11-14 18:52:29 +01:00
parent 19ae37cc99
commit 315c64282b
5 changed files with 57 additions and 57 deletions

View File

@ -63,7 +63,7 @@ int main(int argc, char *argv[]) {
}
}
// Enable virtual termial sequences processing.
// Enable virtual terminal sequences processing.
HANDLE stdout_handle = GetStdHandle(STD_OUTPUT_HANDLE);
DWORD out_mode = ENABLE_PROCESSED_OUTPUT | ENABLE_VIRTUAL_TERMINAL_PROCESSING;
SetConsoleMode(stdout_handle, out_mode);