From ab66b910861f5e1a49e39d80164b6b728bbb42d4 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Sun, 28 Dec 2014 16:40:36 +0100 Subject: [PATCH] Fix NOTO typo. --- kernel/process.cpp | 2 +- utils/which.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/process.cpp b/kernel/process.cpp index 2122a533..82bafe3a 100644 --- a/kernel/process.cpp +++ b/kernel/process.cpp @@ -1128,7 +1128,7 @@ static size_t shebang_count_arguments(char* line) // * kernel/process.cpp // * libc/unistd/execvpe.cpp // * utils/which.cpp -// NOTO: See comments in execvpe() for algorithmic commentary. +// NOTE: See comments in execvpe() for algorithmic commentary. static bool sys_execve_alloc(addralloc_t* alloc, size_t size) { diff --git a/utils/which.cpp b/utils/which.cpp index 0246a748..8eaab1ee 100644 --- a/utils/which.cpp +++ b/utils/which.cpp @@ -41,7 +41,7 @@ // * kernel/process.cpp // * libc/unistd/execvpe.cpp // * utils/which.cpp -// NOTO: See comments in execvpe() for algorithmic commentary. +// NOTE: See comments in execvpe() for algorithmic commentary. bool Which(const char* filename, const char* path, bool all) {